**Reasoning and extraction steps**
1. **Identify distinct pieces of information** in the two supplied findings that can be expressed as atomic facts:
- Finding 1 states that *HUSSAR TRANSPORT S.A. W UPADŁOŚCI* is in bankruptcy proceedings and was removed from the KRS register on 19 June 2023.
- Finding 2 reports that the company had financial problems, which led to bankruptcy proceedings, and that a related company (*Hussar Gruppa*) also faced bankruptcy proceedings.
2. **Formulate each fact as exactly three sentences** while preserving the original meaning and avoiding any interpretation beyond the source text.
3. **Assign severity** – both findings are marked “HIGH”, so each fact receives `"severity": "HIGH"`.
4. **Set confidence levels**:
- The first fact is directly confirmed by the source, therefore `confidence = 1.0`.
- The second fact describes alleged financial problems and related proceedings, so `confidence = 0.8` (within the 0.5‑0.8 range for alleged statements).
5. **Determine finding_confidence**:
- The first fact contains the exact KRS number (`0000636600`), satisfying the condition for `finding_confidence = 1.0`.
- The second fact only mentions the company name, so `finding_confidence = 0.8`.
6. **Reference the source titles** for each fact in the `source_finding_titles` array.
---
```json
{
"facts": [
{
"severity": "HIGH",
"statement": "HUSSAR TRANSPORT S.A. W UPADŁOŚCI znajduje się w postępowaniu upadłościowym. Spółka została wykreślona z rejestru KRS w dniu 19 czerwca 2023 r. Postępowanie upadłościowe ma istotny wpływ na reputację podmiotu.",
"confidence": 1.0,
"finding_confidence": 1.0,
"source_finding_titles": [
"HUSSAR TRANSPORT S.A. W UPADŁOŚCI - Postępowanie upadłościowe"
]
},
{
"severity": "HIGH",
"statement": "Spółka miała problemy finansowe, co doprowadziło do postępowania upadłościowego. Wszczczęto postępowanie upadłościowe przeciwko Hussar Gruppa, spółce powiązanej z HUSSAR TRANSPORT S.A. W UPADŁOŚCI. Problemy finansowe negatywnie wpływają na wizerunek i postrzeganie podmiotu w mediach.",
"confidence": 0.8,
"finding_confidence": 0.8,
"source_finding_titles": [
"HUSSAR TRANSPORT S.A. W UPADŁOŚCI - Problemy finansowe"
]
}
]
}
```