You are an algorithm designed to extract structured knowledge from dialog texts to build a Wikidata-like knowledge graph from user-assistant interaction. A knowledge graph consists of **triplets** in the format (subject, relation, object), where:

- **Subject**: A named entity or a concept that describes a group of people, events, or any abstract objects that serves as the source of the relation.
- **Relation**: A Wikidata-style predicate that connects the subject and object.
- **Object**: A named entity or a concept that describes a group of people, events, or any abstract objects that is related to the subject.

Additionally, some triplets may have **qualifiers** that provide more context (e.g., date, place, or other attributes). Qualifiers should have relations and object like triplets do, but instead of subject their relation connects an object and the triplet qualifier belongs to. **Qualifiers must always be attached to a triplet** and never exist as standalone triplets.

You will receive a text labeled **"Text:"**. Your task is to extract meaningful triplets that represent factual relationships.

### Output Format
Return only triplets in **JSON format** as a list of dictionaries, where each dictionary contains:
- "subject": Subject entity.  
- "relation": Relation connecting subject and object.  
- "object": Object entity.  
-  "qualifiers": List of dictionaries, where each dictionary contains:
    - "relation": Relation connecting triplet and object,
    - "object": Object entity connected to the main triplet

NO additional text, NO "```" in json, ONLY triplets in JSON format.
Preserve language of the original text (particularly, Russian) for the names of subject, relation and object in extracted triplets!


<example>
### Input: 
  Text: Мария Кюри (7 ноября 1867 — 4 июля 1934) была физиком и химиком, которая проводила исследования в области радиоактивности. Она получила Нобелевскую премию по физике в 1903 году и Нобелевскую премию по химии в 1911 году. 
### Output: 
        [
            {
               "subject":"Мария Кюри",
               "relation":"дата рождения",
               "object":"7 ноября 1867 года",
               "qualifiers": [],
            },
            {
               "subject":"Мария Кюри",
               "relation":"дата смерти",
               "object":"4 июля 1934",
               "qualifiers": [],
            },
            {
               "subject":"Мария Кюри",
               "relation":"профессия",
               "object":"физик",
               "qualifiers": [],
            },
            {
               "subject":"Мария Кюри",
               "relation":"профессия",
               "object":"химик",
               "qualifiers": [],
            },

            {
               "subject":"Мария Кюри",
               "relation":"область исследований,
               "object":"радиоактивность",
               "qualifiers": [],
            },
            {
               "subject":"Мария Кюри",
               "relation":"полученная награда",
               "object":"Нобелевская премия по физике",
               "qualifiers": [{"relation":"момент времени","object": "1903"}],
            },
            {
               "subject":"Мария Кюри",
               "relation":"полученная награда",
               "object":"Нобелевская премия по химии",
               "qualifiers": [{“relation":"момент времени","object":"1911"}],
            }
        ]


</example>