:root {
  color-scheme: light;
  --page: #f2f3f5;
  --surface: #ffffff;
  --ink: #15181d;
  --ink-2: #454a52;
  --muted: #6d737d;
  --grid: #e3e5e9;
  --hairline: rgba(21, 24, 29, 0.10);
  --head: #15181d;
  --head-ink: #f2f3f5;
  --head-muted: #9aa1ab;
  --s1: #2a78d6;
  --s2: #eb6834;
  --s3: #1baf7a;
  --s4: #eda100;
  --s5: #e87ba4;
  --s6: #008300;
  --s7: #4a3aa7;
  --s8: #e34948;
  --critical: #c23434;
  --good: #14804a;
  --warn-ink: #8a5a00;
  --r-card: 12px;
  --r-ctl: 8px;
  --r-chip: 4px;
  --mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;
  --hl: rgba(255, 204, 0, 0.32);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(21, 24, 29, 0.04), 0 4px 16px rgba(21, 24, 29, 0.04);
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--s1); text-underline-offset: 2px; }
h1, h2, h3 { text-wrap: balance; }
::selection { background: var(--hl); color: var(--ink); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- fejlec ---------- */
.site-head {
  background: var(--head);
  color: var(--head-ink);
  padding: 28px 0 24px;
}
.site-head h1 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.site-head h1 .brand {
  display: inline-block;
  background: #ffd400;
  color: #15181d;
  padding: 3px 12px 5px;
  border-radius: 2px;
  transform: rotate(-0.6deg);
}
.lede {
  margin: 0;
  color: var(--head-muted);
  max-width: 62rem;
  font-size: 0.92rem;
}
.lede a { color: var(--head-ink); }
.doss {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.doss span { white-space: nowrap; }
.doss span + span::before { content: "·"; margin: 0 10px; opacity: 0.5; }

.tabbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--head);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tabs { display: flex; gap: 2px; flex-wrap: wrap; }
.tab {
  appearance: none; border: none; background: none; cursor: pointer;
  font: inherit; font-size: 0.9rem; font-weight: 600;
  color: var(--head-muted);
  padding: 13px 15px 11px;
  border-bottom: 2px solid transparent;
  transition: color 180ms var(--ease);
}
.tab:hover { color: var(--head-ink); }
.tab.active { color: #fff; border-bottom-color: var(--s1); }
.tab:focus-visible { outline: 2px solid var(--s1); outline-offset: -2px; }

main.wrap { padding: 44px 24px 48px; }

/* ---------- panelek ---------- */
.panel { display: none; }
.panel.active { display: block; animation: panelIn 220ms var(--ease); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- altabok ---------- */
.subtabs {
  display: flex; flex-wrap: wrap; gap: 4px;
  border-bottom: 1px solid var(--grid);
  margin: -12px 0 24px;
}
.subtab {
  appearance: none; border: none; background: none; cursor: pointer;
  font: inherit; font-size: 0.9rem; font-weight: 600;
  color: var(--ink-2);
  padding: 10px 14px 11px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.subtab:hover { color: var(--ink); }
.subtab.active { color: var(--ink); border-bottom-color: var(--ink); }
.subtab:focus-visible { outline: 2px solid var(--s1); outline-offset: -2px; border-radius: 4px; }
.subpanel { display: none; }
.subpanel.active { display: block; animation: panelIn 200ms var(--ease); }
@media (prefers-reduced-motion: reduce) { .subpanel.active { animation: none; } }

/* ---------- kartyak ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--grid);
  border-radius: var(--r-card);
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.card h2 { margin: 0 0 4px; font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; }
.sub { margin: 0 0 14px; color: var(--ink-2); font-size: 0.88rem; max-width: 70rem; }
.intro-card { margin-bottom: 20px; }

.rv { animation: cardIn 420ms var(--ease); }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid2 .card { margin-bottom: 20px; }
@media (max-width: 980px) { .grid2 { grid-template-columns: 1fr; } }

/* ---------- KPI ---------- */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.kpi {
  background: var(--surface);
  border: 1px solid var(--grid);
  border-radius: var(--r-card);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.kpi .v {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.kpi .l { color: var(--ink-2); font-size: 0.85rem; margin-top: 2px; }
.kpi .d { color: var(--muted); font-size: 0.78rem; margin-top: 4px; }

.chart { width: 100%; height: 340px; }
.chart.tall { height: 560px; }

/* ---------- szurosor ---------- */
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 14px;
}
.toolbar input[type="search"] { flex: 1 1 220px; min-width: 180px; margin: 0; }
.toolbar select {
  appearance: none;
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236d737d' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--grid);
  border-radius: var(--r-ctl);
  padding: 9px 32px 9px 12px;
  cursor: pointer;
}
.toolbar select:focus-visible, .toolbar input:focus-visible { outline: 2px solid var(--s1); outline-offset: 1px; }
.toolbar .count { color: var(--muted); font-family: var(--mono); font-size: 0.74rem; margin-left: auto; }

/* ---------- tablazat ---------- */
.tablewrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 0.88rem; }
th {
  text-align: left;
  color: var(--muted);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-bottom: 1px solid var(--grid);
  white-space: nowrap;
}
th.num, td.num {
  text-align: right;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
th.sortable { cursor: pointer; user-select: none; }
th.sortable:hover { color: var(--ink); }
th.sortable::after { content: "↕"; opacity: 0.35; margin-left: 4px; font-size: 0.7rem; }
th.sortable.asc::after { content: "↑"; opacity: 1; color: var(--s1); }
th.sortable.desc::after { content: "↓"; opacity: 1; color: var(--s1); }
td { padding: 8px 10px; border-bottom: 1px solid var(--grid); vertical-align: top; }
tr:last-child td { border-bottom: none; }
tr.rowlink { cursor: pointer; transition: background 140ms var(--ease); }
tr.rowlink:hover { background: rgba(42, 120, 214, 0.06); }
td .sub { font-size: 0.78rem; margin: 0; }
.bar-cell { min-width: 120px; }
.mini-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--s1);
  min-width: 2px;
  transform-origin: left center;
  animation: barGrow 700ms var(--ease) backwards;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ---------- chipek ---------- */
.chip {
  display: inline-block;
  padding: 1px 7px;
  border-radius: var(--r-chip);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid var(--hairline);
  margin: 1px 3px 1px 0;
  white-space: nowrap;
}
.chip.f-friss { background: rgba(194, 52, 52, 0.09); color: #a02b2b; }
.chip.f-cim { background: rgba(235, 104, 52, 0.11); color: #9c4517; }
.chip.f-megszunes { background: rgba(194, 52, 52, 0.09); color: #a02b2b; }
.chip.f-lathatatlan { background: rgba(74, 58, 167, 0.09); color: #453a95; }
.chip.f-vissza { background: rgba(237, 161, 0, 0.13); color: var(--warn-ink); }
.chip.f-res { background: rgba(237, 161, 0, 0.13); color: var(--warn-ink); }
.chip.f-forma { background: rgba(109, 115, 125, 0.11); color: var(--ink-2); }
.chip.cluster { background: rgba(42, 120, 214, 0.09); color: #1d5cab; cursor: pointer; }
.chip.cluster:hover { background: rgba(42, 120, 214, 0.16); }

/* ---------- flag-definiciok (kattinthato szurok) ---------- */
.flag-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.fpill {
  position: relative;
  appearance: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px 7px 10px;
  border: 1px solid var(--grid);
  border-radius: var(--r-chip);
  background: var(--surface);
  color: var(--ink);
  font: inherit; font-size: 0.86rem; font-weight: 600;
  line-height: 1.2;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), transform 120ms var(--ease);
}
.fpill:hover { border-color: var(--s1); background: rgba(42, 120, 214, 0.05); }
.fpill:active { transform: scale(0.97); }
.fpill:focus-visible { outline: 2px solid var(--s1); outline-offset: 2px; }
.fpill .fcode { margin-right: 0; }
.fpill .fc { font-family: var(--mono); font-size: 0.78rem; color: var(--s1); font-variant-numeric: tabular-nums; }
.fpill.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.fpill.active .fcode { color: rgba(255, 255, 255, 0.6); }
.fpill.active .fc { color: #fff; }
.fpill .ftip {
  position: absolute; left: 0; bottom: calc(100% + 9px);
  width: 300px; max-width: 70vw;
  padding: 9px 12px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-ctl);
  font-weight: 400; font-size: 0.8rem; line-height: 1.45; text-align: left;
  box-shadow: 0 8px 24px rgba(21, 24, 29, 0.18);
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 140ms var(--ease), transform 140ms var(--ease), visibility 0s linear 140ms;
  pointer-events: none; z-index: 25;
}
.fpill .ftip::after {
  content: ''; position: absolute; top: 100%; left: 18px;
  border: 6px solid transparent; border-top-color: var(--ink);
}
.fpill:hover .ftip, .fpill:focus-visible .ftip {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity 140ms var(--ease) 60ms, transform 140ms var(--ease) 60ms, visibility 0s;
}
.linkbtn {
  appearance: none; border: none; background: none; cursor: pointer;
  font: inherit; font-size: 0.82rem; font-weight: 600; color: var(--s1);
  padding: 4px 0; text-decoration: underline; text-underline-offset: 3px;
}
.linkbtn:hover { color: var(--ink); }
.fcode { font-family: var(--mono); font-size: 0.66rem; color: var(--muted); letter-spacing: 0.04em; margin-right: 5px; }
.flag-hint { color: var(--muted); font-size: 0.8rem; margin: 10px 0 0; }

/* ---------- halo ---------- */
.net-layout { display: grid; grid-template-columns: 360px 1fr; gap: 20px; }
@media (max-width: 980px) { .net-layout { grid-template-columns: 1fr; } }
.net-list { max-height: 720px; overflow-y: auto; }
.cluster-item {
  padding: 10px 12px;
  border: 1px solid var(--grid);
  border-radius: var(--r-ctl);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.cluster-item:hover { border-color: var(--s1); }
.cluster-item.active { border-color: var(--s1); background: rgba(42, 120, 214, 0.06); }
.cluster-item .t { font-weight: 600; font-size: 0.9rem; }
.cluster-item .m { color: var(--ink-2); font-size: 0.8rem; }
#graph-info { font-size: 0.86rem; color: var(--ink-2); }

/* ---------- vezerloelemek ---------- */
input[type="search"] {
  width: 100%;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--grid);
  border-radius: var(--r-ctl);
  background: var(--surface);
  margin-bottom: 12px;
  transition: border-color 160ms var(--ease);
}
input[type="search"]:hover { border-color: #c9ccd2; }
input[type="search"]:focus { outline: 2px solid var(--s1); outline-offset: 1px; }

.maptools { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.seg {
  display: inline-flex;
  border: 1px solid var(--grid);
  border-radius: var(--r-ctl);
  overflow: hidden;
  flex-wrap: wrap;
  background: var(--surface);
}
.seg-btn {
  appearance: none; border: none; background: none; cursor: pointer;
  font: inherit; font-size: 0.82rem; font-weight: 600;
  color: var(--ink-2);
  padding: 8px 13px;
  border-right: 1px solid var(--grid);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.seg-btn:last-child { border-right: none; }
.seg-btn:hover { color: var(--ink); background: rgba(21, 24, 29, 0.03); }
.seg-btn:active { transform: translateY(1px); }
.seg-btn.active { background: var(--ink); color: #fff; }
.seg-btn:focus-visible { outline: 2px solid var(--s1); outline-offset: -2px; }

.prose p, .prose ul { max-width: 72rem; }
.prose h2 { margin-top: 24px; }
.prose h2:first-child { margin-top: 0; }

.site-foot {
  border-top: 1px solid var(--grid);
  padding: 24px 0 38px;
  color: var(--muted);
  font-size: 0.82rem;
}
.site-foot p { margin: 12px 0 0; max-width: 72rem; }
.site-foot a { color: var(--ink-2); }
.site-foot strong { color: var(--ink-2); }

/* ---------- diszklemer ---------- */
.disclaimer {
  border-color: #eeddb6;
  background: #faf4e4;
}
.disclaimer .v-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--warn-ink);
  margin-bottom: 4px;
}
.disclaimer p { margin: 0; font-size: 0.9rem; max-width: 72rem; }
.calc-table td:first-child { font-family: var(--mono); font-size: 0.78rem; white-space: nowrap; color: var(--ink-2); }

/* ---------- modal ---------- */
.modal-back {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 24, 29, 0.5);
  z-index: 50;
  padding: 4vh 16px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 240ms var(--ease);
}
.modal-back.show { display: block; }
.modal-back.in { opacity: 1; }
/* stackelt modalbox: minden szint egy .stack-item, benne a becsukott sav
   (.modal-bar) ES a teljes modal (.modal-wrap > .modal); az .open osztaly
   valt kozottuk, mindket irany animalt (akkordion) */
.modal-stack { max-width: 860px; margin: 0 auto; }
.stack-item { margin-bottom: 10px; }
.modal {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 24px 28px;
  transition: padding 320ms var(--ease);
}
/* a 0fr grid-sor a tartalmat csukja, a padding-ot nem - azt kulon kell nullazni,
   kulonben a becsukott szint alatt 48px ures sav marad */
.stack-item:not(.open) .modal-wrap > .modal { padding-top: 0; padding-bottom: 0; }
.stack-item .modal-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
  transition: grid-template-rows 320ms var(--ease), opacity 260ms var(--ease), transform 320ms var(--ease);
}
.stack-item.open .modal-wrap { grid-template-rows: 1fr; opacity: 1; transform: none; }
.stack-item .modal-wrap > .modal { overflow: hidden; min-height: 0; }
.stack-item.open .modal { animation: focusRing 800ms var(--ease); }
@keyframes focusRing {
  from { box-shadow: 0 0 0 4px rgba(42, 120, 214, 0.45); }
  to { box-shadow: 0 0 0 0 rgba(42, 120, 214, 0); }
}
.modal-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--grid);
  border-radius: var(--r-ctl);
  padding: 9px 14px;
  max-height: 60px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 280ms var(--ease), opacity 220ms var(--ease),
    padding 280ms var(--ease), border-color 160ms var(--ease), margin 280ms var(--ease);
}
.stack-item.open .modal-bar {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-width: 0;
  border-bottom-width: 0;
  margin-bottom: 0;
  pointer-events: none;
}
.modal-bar:hover { border-color: var(--s1); }
.modal-bar:focus-visible { outline: 2px solid var(--s1); outline-offset: 1px; }
.modal-bar .mb-lv {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  flex: 0 0 auto;
}
.modal-bar .mb-t {
  font-weight: 600;
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 auto;
}
.modal-bar .mb-hint {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  flex: 0 0 auto;
}
.modal-bar:hover .mb-hint { color: var(--s1); }
.modal h2 { margin: 0 0 2px; font-size: 1.2rem; padding-right: 44px; }
.modal .close {
  position: absolute;
  top: 12px;
  right: 14px;
  appearance: none; border: none; background: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--r-chip);
}
.modal .close:hover { color: var(--ink); background: rgba(21, 24, 29, 0.06); }
.modal dl { display: grid; grid-template-columns: 180px 1fr; gap: 4px 14px; font-size: 0.9rem; margin: 14px 0; }
.modal dt { color: var(--muted); font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; padding-top: 3px; }
.doss-line {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.modal dd { margin: 0; }

/* modal-beli tovabbfuro linkek: pill-formaban (kepviselo, kerulet, program) */
.pillrow { display: flex; flex-wrap: wrap; gap: 6px; padding: 2px 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 11px;
  border-radius: var(--r-chip);
  background: var(--surface);
  border: 1px solid var(--grid);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.5;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease);
}
.pill:hover { border-color: var(--s1); background: rgba(42, 120, 214, 0.05); text-decoration: none; }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.pill .amt { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-2); }
.yearly-bars { display: flex; gap: 8px; align-items: flex-end; height: 90px; margin: 10px 0 4px; }
.yearly-bars .yb { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 4px; }
.yearly-bars .yb .b {
  width: 100%; max-width: 64px;
  background: var(--s1);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  animation: barRise 500ms var(--ease) backwards;
}
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.yearly-bars .yb .t { font-size: 0.74rem; color: var(--muted); }
.yearly-bars .yb .v { font-size: 0.74rem; color: var(--ink-2); font-feature-settings: "tnum"; }

/* ---------- kiertekelo doboz (megallapitas) ---------- */
.verdict {
  margin-top: 14px;
  padding: 11px 14px 12px;
  border-radius: var(--r-ctl);
  border: 1px solid transparent;
  font-size: 0.88rem;
  line-height: 1.5;
}
.verdict:empty { display: none; }
.verdict .v-tag {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.verdict .v-body { color: var(--ink-2); }
.verdict .v-lead {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 62%, var(--hl) 62%);
  padding: 0 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.v-info { background: #eef3fa; border-color: #d7e3f3; }
.v-info .v-tag { color: #1d5cab; }
.v-ok { background: #ecf6f0; border-color: #cee8da; }
.v-ok .v-tag { color: var(--good); }
.v-warn { background: #faf4e4; border-color: #eeddb6; }
.v-warn .v-tag { color: var(--warn-ink); }
.v-alert { background: #fbeded; border-color: #f1d2d2; }
.v-alert .v-tag { color: var(--critical); }
.verdict .v-body .muted { color: var(--muted); }
@media (max-width: 560px) { .verdict { font-size: 0.85rem; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
  }
}
