<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: wisdom</title>
    <description>The latest articles on Forem by wisdom (@wisdomedeki761).</description>
    <link>https://forem.com/wisdomedeki761</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3919233%2F08f494cc-ace5-4f56-bbe1-1de667e1b48d.jpeg</url>
      <title>Forem: wisdom</title>
      <link>https://forem.com/wisdomedeki761</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/wisdomedeki761"/>
    <language>en</language>
    <item>
      <title>Built a Multimodal Emergency First Aid Assistant with Gemma 4 — Here's What the Model Unlocked</title>
      <dc:creator>wisdom</dc:creator>
      <pubDate>Fri, 08 May 2026 22:16:52 +0000</pubDate>
      <link>https://forem.com/wisdomedeki761/built-a-multimodal-emergency-first-aid-assistant-with-gemma-4-heres-what-the-model-unlocked-2pco</link>
      <guid>https://forem.com/wisdomedeki761/built-a-multimodal-emergency-first-aid-assistant-with-gemma-4-heres-what-the-model-unlocked-2pco</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/google-gemma-2026-05-06"&gt;Gemma 4 Challenge: Write About Gemma 4&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;A few weeks ago, I asked myself a simple question: &lt;strong&gt;what would it take to build an AI that could walk a frightened person through a medical emergency — without typing a single word?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;They'd need to show the situation. Speak the emergency. Get guided through it, step by step, in plain language, with their hands free.&lt;/p&gt;

&lt;p&gt;That question led me to build &lt;strong&gt;Med-first&lt;/strong&gt; — and it led me straight to Gemma 4. Because Gemma 4 is the first open model I've encountered where the answer to that question is: &lt;em&gt;yes, all of that is actually possible in one API call.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This post is about what Gemma 4 unlocked, how I built it, and — if you're a developer in Africa or anywhere compute access has historically been a barrier — why this release matters more than the benchmarks suggest.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is Med-first?
&lt;/h2&gt;

&lt;p&gt;Med-first is a browser-based emergency first aid assistant. Open it on any phone, no install, no login. Then:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Type&lt;/strong&gt; your emergency and get structured, step-by-step first aid guidance&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Speak&lt;/strong&gt; into the mic hands-free — the browser transcribes it and Gemma 4 responds, reading the answer aloud automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Point your camera&lt;/strong&gt; at the injury or scene, capture a frame, and Gemma 4 describes what it sees and tailors its guidance to the actual visual situation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The output is always a structured triage card: a severity assessment (Critical / Urgent / Stable), a numbered list of steps a non-medical person can follow, warning signs to watch for, and a line of calm reassurance.&lt;/p&gt;

&lt;p&gt;For Critical cases, the very first thing it does — before any first aid steps — is tell you to call emergency services.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Gemma 4 Specifically?
&lt;/h2&gt;

&lt;p&gt;This is the question the challenge judges care about most, so let me be direct.&lt;/p&gt;

&lt;p&gt;The core experience of Med-first requires three things to happen in a single interaction:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Understand a &lt;strong&gt;spoken description&lt;/strong&gt; of an emergency (audio/transcript)&lt;/li&gt;
&lt;li&gt;Analyze a &lt;strong&gt;photo or camera frame&lt;/strong&gt; of the scene (vision)&lt;/li&gt;
&lt;li&gt;Return &lt;strong&gt;structured, actionable guidance&lt;/strong&gt; in plain language&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Before Gemma 4, building this with a single open model wasn't possible. You'd stitch together three separate models — a speech recognition model, a vision model, a text model — with all the latency, error surface, and infrastructure complexity that entails.&lt;/p&gt;

&lt;p&gt;Gemma 4 handles all three natively.&lt;/p&gt;

&lt;p&gt;From the official model card:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Extended Multimodalities: Processes Text, Image with variable aspect ratio and resolution support (all models), Video, and Audio (featured natively on the E2B and E4B models)."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's the unlock. One model, one API call, three modalities.&lt;/p&gt;

&lt;h3&gt;
  
  
  Which Model I Chose and Why
&lt;/h3&gt;

&lt;p&gt;For Med-first, I'm using &lt;strong&gt;&lt;code&gt;gemma-4-27b-a4b-it&lt;/code&gt;&lt;/strong&gt; — the 26B Mixture of Experts variant — accessed via the Gemini API on Google AI Studio.&lt;/p&gt;

&lt;p&gt;The choice was deliberate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The MoE architecture activates only ~3.8B parameters per inference pass, which means &lt;strong&gt;fast response times&lt;/strong&gt; — critical when someone is in a medical emergency and every second of waiting feels like ten&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;256K context window&lt;/strong&gt; means the full conversation session stays in context from the first message to the last. If someone describes a situation, sends a photo, asks a follow-up, and then says "it's getting worse" — Gemma 4 has all of that history and its guidance evolves accordingly, rather than starting from zero each turn&lt;/li&gt;
&lt;li&gt;The model's &lt;strong&gt;native function-calling and structured JSON output&lt;/strong&gt; capabilities let me drive the entire UI from a single model response — the severity badge, the numbered steps, the call-emergency banner — all parsed from a JSON object Gemma 4 returns directly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;An edge model (E2B or E4B) would make sense for a future offline/on-device version — and I've architected it so that path is open. But for a web app where response quality and context retention matter most, the 26B MoE is the right tool.&lt;/p&gt;




&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Stack
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Next.js 14&lt;/strong&gt; (App Router) — frontend and server actions in one project&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS + shadcn/ui&lt;/strong&gt; — dark, high-contrast medical UI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Speech API&lt;/strong&gt; (browser-native, free) — voice input transcription&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web Speech Synthesis&lt;/strong&gt; — reads the AI response aloud, hands-free&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;getUserMedia&lt;/code&gt;&lt;/strong&gt; — live camera access for frame capture&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Next.js Server Actions&lt;/strong&gt; — the backend layer, no separate server needed&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gemini API&lt;/strong&gt; (primary) → &lt;strong&gt;OpenRouter free tier&lt;/strong&gt; (fallback)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Architecture
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Browser (React frontend)
    │
    ├── Text Input
    ├── Voice Input (Web Speech API → transcript)
    └── Camera Capture (getUserMedia → frame → base64)
              │
              ▼
    actions/action.ts  ['use server']
    ← runs server-side, API keys never touch the browser →
              │
    ┌─────────┴──────────┐
    │   Gemini API       │  → fallback →  OpenRouter
    │   gemma-4-27b-a4b-it              gemma-4-31b-it:free
    └─────────┬──────────┘
              │
    Structured JSON triage response
              │
    TriageCard rendered in UI
    + TTS reads response aloud
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The key architectural decision was &lt;strong&gt;Next.js Server Actions&lt;/strong&gt; over traditional API routes. The frontend calls &lt;code&gt;triageEmergency()&lt;/code&gt; like a plain async function — no &lt;code&gt;fetch()&lt;/code&gt;, no HTTP status codes, no CORS. TypeScript types flow end-to-end. It made the code dramatically simpler to build and easier to reason about.&lt;/p&gt;

&lt;h3&gt;
  
  
  The System Prompt
&lt;/h3&gt;

&lt;p&gt;Getting the model to behave correctly under emergency conditions required a carefully designed system prompt. A few things that mattered:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Force JSON output.&lt;/strong&gt; Gemma 4 supports native structured output, but I reinforce it in the prompt:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You MUST respond ONLY with valid JSON matching the exact schema below.
No markdown fences. No preamble. No explanation. Just JSON.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Plain language requirement.&lt;/strong&gt; Emergency guidance is useless if a frightened person can't understand it:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Give instructions in numbered steps. Short sentences. Plain language.
No medical jargon. A frightened 14-year-old must understand you.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Always escalate Critical cases first:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;For Critical cases, ALWAYS instruct the user to call emergency services
(911 / 999 / 112) as your FIRST step before any other instructions.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;The response schema:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"severity"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Critical | Urgent | Stable"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"call_emergency"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"what_i_see"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"description of the image if provided"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"steps"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"step 1"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"step 2"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"step 3"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"watch_for"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"warning sign 1"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"warning sign 2"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"reassurance"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"one calming sentence"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Multimodal Image Handling
&lt;/h3&gt;

&lt;p&gt;When a user captures a frame from the camera or uploads a photo, it gets base64-encoded in the browser, then passed to the server action as a string. The server action attaches it to the user message in the OpenAI-compatible format the Gemini API accepts:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;role&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;user&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;content&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;image_url&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;image_url&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;url&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;`data:image/jpeg;base64,&lt;/span&gt;&lt;span class="p"&gt;${&lt;/span&gt;&lt;span class="nx"&gt;imageBase64&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="s2"&gt;`&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;},&lt;/span&gt;
    &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;text&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;text&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;userMessage&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
  &lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Gemma 4 then describes what it observes in the &lt;code&gt;what_i_see&lt;/code&gt; field of its response before giving guidance — so someone can see the model is actually reading the image, not guessing.&lt;/p&gt;

&lt;h3&gt;
  
  
  One Bug Worth Mentioning
&lt;/h3&gt;

&lt;p&gt;During development, I hit a 500 error from the Gemini API that cost me an hour. The issue: the model string &lt;code&gt;gemma-4-it&lt;/code&gt; does not exist. The actual correct model strings are &lt;code&gt;gemma-4-27b-a4b-it&lt;/code&gt; and &lt;code&gt;gemma-4-31b-it&lt;/code&gt;. Claude Code had guessed a model name that sounded right but wasn't. Always verify model strings against the official docs before debugging your request format.&lt;/p&gt;




&lt;h2&gt;
  
  
  What the 256K Context Window Actually Means in This Context (Pun Intended)
&lt;/h2&gt;

&lt;p&gt;Most emergency situations aren't a single message. They evolve:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Someone fell, they hit their head."&lt;br&gt;&lt;br&gt;
&lt;em&gt;[Gemma 4 guides them through head injury checks]&lt;/em&gt;&lt;br&gt;&lt;br&gt;
"They're conscious but confused."&lt;br&gt;&lt;br&gt;
&lt;em&gt;[Guidance updates to reflect that detail]&lt;/em&gt;&lt;br&gt;&lt;br&gt;
"Now they're saying their neck hurts."&lt;br&gt;&lt;br&gt;
&lt;em&gt;[Full session history still in context — guidance escalates appropriately]&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With an 8K or 32K context model, you'd be managing conversation truncation, losing critical earlier context, or paying to re-summarize. With 256K, the model tracks the entire situation as it unfolds. For a use case where continuity is literally a safety concern, this matters.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Means for Developers in Africa
&lt;/h2&gt;

&lt;p&gt;I want to say something that most Gemma 4 guides won't.&lt;/p&gt;

&lt;p&gt;For developers building in Nigeria and across the continent, the economics of cloud AI have always been a quiet barrier. Dollar-denominated API pricing. Latency from distant servers. Payment methods that require workarounds. And the harder-to-quantify problem of data sovereignty — sending sensitive user data to foreign cloud infrastructure is a compliance and trust problem many African startups navigate silently.&lt;/p&gt;

&lt;p&gt;Gemma 4 changes the equation.&lt;/p&gt;

&lt;p&gt;An open-weight model powerful enough to run locally — or accessed via a free API tier with no credit card required — removes several of those barriers at once. Med-first is deployed on Vercel's free tier, uses Google AI Studio's free tier for the primary API, and falls back to OpenRouter's free tier. The total infrastructure cost to run this application is zero.&lt;/p&gt;

&lt;p&gt;More importantly: 136 million people globally lack access to emergency medical services. In many parts of Africa, the nearest hospital is hours away. A tool that can guide someone through a medical crisis until help arrives — available on any phone browser, in any of 140+ languages Gemma 4 supports natively — isn't a demo. It's something that could matter.&lt;/p&gt;

&lt;p&gt;That's what open models at this capability level actually unlock.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It Yourself
&lt;/h2&gt;

&lt;p&gt;The model strings to get started immediately on Google AI Studio (free, no credit card):&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;String&lt;/th&gt;
&lt;th&gt;Best For&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;26B MoE&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gemma-4-27b-a4b-it&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Speed + reasoning, production&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;31B Dense&lt;/td&gt;
&lt;td&gt;&lt;code&gt;gemma-4-31b-it&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Maximum quality&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Via OpenRouter (also free):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;google/gemma-4-31b-it:free
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The OpenAI-compatible endpoint for Gemini API:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://generativelanguage.googleapis.com/v1beta/openai/chat/completions
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Wrapping Up
&lt;/h2&gt;

&lt;p&gt;Gemma 4 isn't an incremental update. The combination of native multimodal input, a 256K context window, structured output, and an Apache 2.0 license puts it in a category that genuinely didn't exist for open models before this release.&lt;/p&gt;

&lt;p&gt;Med-first exists because Gemma 4 made it possible to handle voice, vision, and text in a single model call. That's the unlock. Everything else — the UI, the triage card, the hands-free voice loop — is just building around what the model already knows how to do.&lt;/p&gt;

&lt;p&gt;What will you build with it?&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Med-first is built with Next.js, Tailwind CSS, and Gemma 4 via the Gemini API. Deployed on Vercel.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Medical disclaimer: Med-first provides AI-generated guidance for demonstration purposes. Always call emergency services for life-threatening emergencies.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>gemmachallenge</category>
      <category>gemma</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
