Returns Bundesbank data for a given flow and key
Usage
bbk_data(
flow,
key = NULL,
start_period = NULL,
end_period = NULL,
first_n = NULL,
last_n = NULL
)
Arguments
- flow
(
character(1)
) flow to query, 5-8 characters. Seebbk_metadata()
for available dataflows.- key
(
character(1)
) key to query.- start_period
(
character(1)
) start date of the data. Supported formats:YYYY for annual data (e.g., "2019")
YYYY-S[1-2] for semi-annual data (e.g., "2019-S1")
YYYY-Q[1-4] for quarterly data (e.g., "2019-Q1")
YYYY-MM for monthly data (e.g., "2019-01")
YYYY-W[01-53] for weekly data (e.g., "2019-W01")
YYYY-MM-DD for daily and business data (e.g., "2019-01-01") If
NULL
, no start date restriction is applied (data retrieved from the earliest available date). DefaultNULL
.
- end_period
(
character(1)
) end date of the data, in the same format as start_period. IfNULL
, no end date restriction is applied (data retrieved up to the most recent available date). DefaultNULL
.- first_n
(
numeric(1)
) number of observations to retrieve from the start of the series. IfNULL
, no restriction is applied. DefaultNULL
.- last_n
(
numeric(1)
) number of observations to retrieve from the end of the series. IfNULL
, no restriction is applied. DefaultNULL
.
Value
A data.table::data.table()
with the requested data.
See also
Other data:
bbk_series()
,
ecb_data()
,
snb_data()
Examples
# \donttest{
# fetch all data for a given flow and key
bbk_data("BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A")
#> [1] "data/BBSIS/D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A"
#> date key value
#> <Date> <char> <num>
#> 1: 1997-08-07 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 5.76
#> 2: 1997-08-08 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 5.76
#> 3: 1997-08-11 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 5.75
#> 4: 1997-08-12 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 5.72
#> 5: 1997-08-13 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 5.77
#> ---
#> 6988: 2025-02-17 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.51
#> 6989: 2025-02-18 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.52
#> 6990: 2025-02-19 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.53
#> 6991: 2025-02-20 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.56
#> 6992: 2025-02-21 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.51
#> title
#> <char>
#> 1: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 2: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 3: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 4: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 5: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> ---
#> 6988: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 6989: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 6990: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 6991: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 6992: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> freq bearer_reg item valuation currency issuer_class listed_sub
#> <char> <char> <char> <char> <char> <char> <char>
#> 1: daily I ZAR ZI EUR S1311 B
#> 2: daily I ZAR ZI EUR S1311 B
#> 3: daily I ZAR ZI EUR S1311 B
#> 4: daily I ZAR ZI EUR S1311 B
#> 5: daily I ZAR ZI EUR S1311 B
#> ---
#> 6988: daily I ZAR ZI EUR S1311 B
#> 6989: daily I ZAR ZI EUR S1311 B
#> 6990: daily I ZAR ZI EUR S1311 B
#> 6991: daily I ZAR ZI EUR S1311 B
#> 6992: daily I ZAR ZI EUR S1311 B
#> security_class maturity interest_type interest_rate redemption
#> <char> <char> <char> <char> <char>
#> 1: A604 R10XX R A A
#> 2: A604 R10XX R A A
#> 3: A604 R10XX R A A
#> 4: A604 R10XX R A A
#> 5: A604 R10XX R A A
#> ---
#> 6988: A604 R10XX R A A
#> 6989: A604 R10XX R A A
#> 6990: A604 R10XX R A A
#> 6991: A604 R10XX R A A
#> 6992: A604 R10XX R A A
#> certificate coverage rating time_format decimals unit unit_mult
#> <char> <char> <char> <char> <int> <char> <char>
#> 1: _Z _Z A P1D 2 PROZENT 0
#> 2: _Z _Z A P1D 2 PROZENT 0
#> 3: _Z _Z A P1D 2 PROZENT 0
#> 4: _Z _Z A P1D 2 PROZENT 0
#> 5: _Z _Z A P1D 2 PROZENT 0
#> ---
#> 6988: _Z _Z A P1D 2 PROZENT 0
#> 6989: _Z _Z A P1D 2 PROZENT 0
#> 6990: _Z _Z A P1D 2 PROZENT 0
#> 6991: _Z _Z A P1D 2 PROZENT 0
#> 6992: _Z _Z A P1D 2 PROZENT 0
#> category unit_eng
#> <char> <char>
#> 1: GKZR percent
#> 2: GKZR percent
#> 3: GKZR percent
#> 4: GKZR percent
#> 5: GKZR percent
#> ---
#> 6988: GKZR percent
#> 6989: GKZR percent
#> 6990: GKZR percent
#> 6991: GKZR percent
#> 6992: GKZR percent
# fetch data for multiple keys
bbk_data("BBEX3", c("M.ISK.EUR", "USD.CA.AC.A01"))
#> [1] "data/BBEX3/M.ISK.EUR+USD.CA.AC.A01"
#> date key value
#> <Date> <char> <num>
#> 1: 1999-01-01 BBEX3.M.ISK.EUR.CA.AC.A01 79.74
#> 2: 1999-02-01 BBEX3.M.ISK.EUR.CA.AC.A01 79.61
#> 3: 1999-03-01 BBEX3.M.ISK.EUR.CA.AC.A01 78.07
#> 4: 1999-04-01 BBEX3.M.ISK.EUR.CA.AC.A01 77.92
#> 5: 1999-05-01 BBEX3.M.ISK.EUR.CA.AC.A01 77.88
#> ---
#> 1560: 2024-09-01 BBEX3.M.ISK.USD.CA.AC.A01 134.60
#> 1561: 2024-10-01 BBEX3.M.ISK.USD.CA.AC.A01 136.83
#> 1562: 2024-11-01 BBEX3.M.ISK.USD.CA.AC.A01 137.95
#> 1563: 2024-12-01 BBEX3.M.ISK.USD.CA.AC.A01 138.20
#> 1564: 2025-01-01 BBEX3.M.ISK.USD.CA.AC.A01 141.15
#> title
#> <char>
#> 1: Exchange rates for the euro in Iceland / EUR 1 = ISK ... (middle)
#> 2: Exchange rates for the euro in Iceland / EUR 1 = ISK ... (middle)
#> 3: Exchange rates for the euro in Iceland / EUR 1 = ISK ... (middle)
#> 4: Exchange rates for the euro in Iceland / EUR 1 = ISK ... (middle)
#> 5: Exchange rates for the euro in Iceland / EUR 1 = ISK ... (middle)
#> ---
#> 1560: Exchange rates for the US dollar in Iceland / USD 1 = ISK ... (middle)
#> 1561: Exchange rates for the US dollar in Iceland / USD 1 = ISK ... (middle)
#> 1562: Exchange rates for the US dollar in Iceland / USD 1 = ISK ... (middle)
#> 1563: Exchange rates for the US dollar in Iceland / USD 1 = ISK ... (middle)
#> 1564: Exchange rates for the US dollar in Iceland / USD 1 = ISK ... (middle)
#> freq currency erx_partner_currency erx_series_type erx_rate_type
#> <char> <char> <char> <char> <char>
#> 1: monthly ISK EUR CA AC
#> 2: monthly ISK EUR CA AC
#> 3: monthly ISK EUR CA AC
#> 4: monthly ISK EUR CA AC
#> 5: monthly ISK EUR CA AC
#> ---
#> 1560: monthly ISK USD CA AC
#> 1561: monthly ISK USD CA AC
#> 1562: monthly ISK USD CA AC
#> 1563: monthly ISK USD CA AC
#> 1564: monthly ISK USD CA AC
#> erx_suffix time_format decimals unit unit_mult category
#> <char> <char> <int> <char> <char> <char>
#> 1: A01 P1M 2 ISK 0 WEDE
#> 2: A01 P1M 2 ISK 0 WEDE
#> 3: A01 P1M 2 ISK 0 WEDE
#> 4: A01 P1M 2 ISK 0 WEDE
#> 5: A01 P1M 2 ISK 0 WEDE
#> ---
#> 1560: A01 P1M 4 ISK 0 WEDE
#> 1561: A01 P1M 4 ISK 0 WEDE
#> 1562: A01 P1M 4 ISK 0 WEDE
#> 1563: A01 P1M 4 ISK 0 WEDE
#> 1564: A01 P1M 4 ISK 0 WEDE
#> comm_gen_eng
#> <char>
#> 1: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 2: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 3: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 4: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 5: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> ---
#> 1560: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 1561: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 1562: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 1563: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> 1564: Collapse of banking system and introduction of capital controls in October 2008, see Deutsche Bundesbank, Monthly Report, July 2010, pp 52-53.
#> comm_meth_eng
#> <char>
#> 1: Until March 2020, calculated on the basis of buying and selling rates.
#> 2: Until March 2020, calculated on the basis of buying and selling rates.
#> 3: Until March 2020, calculated on the basis of buying and selling rates.
#> 4: Until March 2020, calculated on the basis of buying and selling rates.
#> 5: Until March 2020, calculated on the basis of buying and selling rates.
#> ---
#> 1560: Until March 2020, calculated on the basis of buying and selling rates.
#> 1561: Until March 2020, calculated on the basis of buying and selling rates.
#> 1562: Until March 2020, calculated on the basis of buying and selling rates.
#> 1563: Until March 2020, calculated on the basis of buying and selling rates.
#> 1564: Until March 2020, calculated on the basis of buying and selling rates.
#> comm_src_eng
#> <char>
#> 1: Sedlabanki Islands, Reykjavik.
#> 2: Sedlabanki Islands, Reykjavik.
#> 3: Sedlabanki Islands, Reykjavik.
#> 4: Sedlabanki Islands, Reykjavik.
#> 5: Sedlabanki Islands, Reykjavik.
#> ---
#> 1560: Sedlabanki Islands, Reykjavik.
#> 1561: Sedlabanki Islands, Reykjavik.
#> 1562: Sedlabanki Islands, Reykjavik.
#> 1563: Sedlabanki Islands, Reykjavik.
#> 1564: Sedlabanki Islands, Reykjavik.
# specified period (start date-end date) for daily data
bbk_data(
"BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A",
start_period = "2020-01-01",
end_period = "2020-08-01"
)
#> [1] "data/BBSIS/D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A"
#> date key value
#> <Date> <char> <num>
#> 1: 2020-01-02 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.16
#> 2: 2020-01-03 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.27
#> 3: 2020-01-06 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.27
#> 4: 2020-01-07 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.27
#> 5: 2020-01-08 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.27
#> ---
#> 144: 2020-07-27 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.48
#> 145: 2020-07-28 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.52
#> 146: 2020-07-29 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.53
#> 147: 2020-07-30 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.55
#> 148: 2020-07-31 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A -0.57
#> title
#> <char>
#> 1: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 2: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 3: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 4: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 5: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> ---
#> 144: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 145: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 146: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 147: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 148: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> freq bearer_reg item valuation currency issuer_class listed_sub
#> <char> <char> <char> <char> <char> <char> <char>
#> 1: daily I ZAR ZI EUR S1311 B
#> 2: daily I ZAR ZI EUR S1311 B
#> 3: daily I ZAR ZI EUR S1311 B
#> 4: daily I ZAR ZI EUR S1311 B
#> 5: daily I ZAR ZI EUR S1311 B
#> ---
#> 144: daily I ZAR ZI EUR S1311 B
#> 145: daily I ZAR ZI EUR S1311 B
#> 146: daily I ZAR ZI EUR S1311 B
#> 147: daily I ZAR ZI EUR S1311 B
#> 148: daily I ZAR ZI EUR S1311 B
#> security_class maturity interest_type interest_rate redemption certificate
#> <char> <char> <char> <char> <char> <char>
#> 1: A604 R10XX R A A _Z
#> 2: A604 R10XX R A A _Z
#> 3: A604 R10XX R A A _Z
#> 4: A604 R10XX R A A _Z
#> 5: A604 R10XX R A A _Z
#> ---
#> 144: A604 R10XX R A A _Z
#> 145: A604 R10XX R A A _Z
#> 146: A604 R10XX R A A _Z
#> 147: A604 R10XX R A A _Z
#> 148: A604 R10XX R A A _Z
#> coverage rating time_format decimals unit unit_mult category unit_eng
#> <char> <char> <char> <int> <char> <char> <char> <char>
#> 1: _Z A P1D 2 PROZENT 0 GKZR percent
#> 2: _Z A P1D 2 PROZENT 0 GKZR percent
#> 3: _Z A P1D 2 PROZENT 0 GKZR percent
#> 4: _Z A P1D 2 PROZENT 0 GKZR percent
#> 5: _Z A P1D 2 PROZENT 0 GKZR percent
#> ---
#> 144: _Z A P1D 2 PROZENT 0 GKZR percent
#> 145: _Z A P1D 2 PROZENT 0 GKZR percent
#> 146: _Z A P1D 2 PROZENT 0 GKZR percent
#> 147: _Z A P1D 2 PROZENT 0 GKZR percent
#> 148: _Z A P1D 2 PROZENT 0 GKZR percent
# or only specify the start date
bbk_data(
"BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A",
start_period = "2024-04-01"
)
#> [1] "data/BBSIS/D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A"
#> date key value
#> <Date> <char> <num>
#> 1: 2024-04-02 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.37
#> 2: 2024-04-03 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.41
#> 3: 2024-04-04 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.39
#> 4: 2024-04-05 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.37
#> 5: 2024-04-08 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.46
#> ---
#> 224: 2025-02-17 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.51
#> 225: 2025-02-18 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.52
#> 226: 2025-02-19 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.53
#> 227: 2025-02-20 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.56
#> 228: 2025-02-21 BBSIS.D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A 2.51
#> title
#> <char>
#> 1: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 2: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 3: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 4: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 5: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> ---
#> 224: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 225: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 226: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 227: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> 228: Yields, derived from the term structure of interest rates, on listed Federal securities with annual coupon payments / residual maturity of 10.0 years / daily data
#> freq bearer_reg item valuation currency issuer_class listed_sub
#> <char> <char> <char> <char> <char> <char> <char>
#> 1: daily I ZAR ZI EUR S1311 B
#> 2: daily I ZAR ZI EUR S1311 B
#> 3: daily I ZAR ZI EUR S1311 B
#> 4: daily I ZAR ZI EUR S1311 B
#> 5: daily I ZAR ZI EUR S1311 B
#> ---
#> 224: daily I ZAR ZI EUR S1311 B
#> 225: daily I ZAR ZI EUR S1311 B
#> 226: daily I ZAR ZI EUR S1311 B
#> 227: daily I ZAR ZI EUR S1311 B
#> 228: daily I ZAR ZI EUR S1311 B
#> security_class maturity interest_type interest_rate redemption certificate
#> <char> <char> <char> <char> <char> <char>
#> 1: A604 R10XX R A A _Z
#> 2: A604 R10XX R A A _Z
#> 3: A604 R10XX R A A _Z
#> 4: A604 R10XX R A A _Z
#> 5: A604 R10XX R A A _Z
#> ---
#> 224: A604 R10XX R A A _Z
#> 225: A604 R10XX R A A _Z
#> 226: A604 R10XX R A A _Z
#> 227: A604 R10XX R A A _Z
#> 228: A604 R10XX R A A _Z
#> coverage rating time_format decimals unit unit_mult category unit_eng
#> <char> <char> <char> <int> <char> <char> <char> <char>
#> 1: _Z A P1D 2 PROZENT 0 GKZR percent
#> 2: _Z A P1D 2 PROZENT 0 GKZR percent
#> 3: _Z A P1D 2 PROZENT 0 GKZR percent
#> 4: _Z A P1D 2 PROZENT 0 GKZR percent
#> 5: _Z A P1D 2 PROZENT 0 GKZR percent
#> ---
#> 224: _Z A P1D 2 PROZENT 0 GKZR percent
#> 225: _Z A P1D 2 PROZENT 0 GKZR percent
#> 226: _Z A P1D 2 PROZENT 0 GKZR percent
#> 227: _Z A P1D 2 PROZENT 0 GKZR percent
#> 228: _Z A P1D 2 PROZENT 0 GKZR percent
# }