image
imagewidth (px)
812
812
system
stringclasses
1 value
instruction
stringclasses
1 value
text
stringclasses
10 values
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"1","type":"contents_page","title":"התוכן"},"facts":[]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"2","type":"declaration","title":"דוח רואה החשבון המבקר לחברי העמותה"},"facts":[]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"3","type":"balance_sheet","title":"דוחות על המצב הכספי"},"facts":[{"value":"745384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["רכוש","רכוש שוטף","מזומנים ושווה מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,278,50,18]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["רכוש","רכוש שוטף","מזומנים ושווה מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,278,50,18]},{"value":"322816","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["רכוש","רכוש שוטף","השקעות בניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,294,50,18]},{"value":"537962","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["רכוש","רכוש שוטף","השקעות בניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,294,50,18]},{"value":"6644","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["רכוש","רכוש שוטף","חייבים ויתרות חובה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[260,309,34,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["רכוש","רכוש שוטף","חייבים ויתרות חובה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,314,11,12]},{"value":"1074844","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["רכוש","רכוש שוטף"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[235,325,58,18]},{"value":"1389587","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["רכוש","רכוש שוטף"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,327,58,18]},{"value":"40006913","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2024-12-31","path":["רכוש","השקעות","פקדונות בבנקים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[226,375,68,18]},{"value":"7016757","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2023-12-31","path":["רכוש","השקעות","פקדונות בבנקים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,375,58,18]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2024-12-31","path":["רכוש","רכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[237,423,57,18]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2023-12-31","path":["רכוש","רכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,423,51,18]},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["רכוש"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[225,455,69,18]},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["רכוש"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,455,63,18]},{"value":"43125","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","המחאות לפרעון"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,516,51,18]},{"value":"14250","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","המחאות לפרעון"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,516,46,18]},{"value":"137754","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2024-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","זכאים ויתרות זכות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,532,56,18]},{"value":"84159","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2023-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","זכאים ויתרות זכות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,532,51,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2024-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","מקדמות על-חשבון מכירת מקרקעין"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[257,552,9,8]},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2023-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:","מקדמות על-חשבון מכירת מקרקעין"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,548,58,18]},{"value":"180879","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[245,565,50,18]},{"value":"7962809","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","התחייבויות שוטפות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,563,58,18]},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2024-12-31","path":["התחייבויות ונכסים נטו","התחייבויות לזמן ארוך -","בגין סיום יחסי עובד-מעביד"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,613,50,18]},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2023-12-31","path":["התחייבויות ונכסים נטו","התחייבויות לזמן ארוך -","בגין סיום יחסי עובד-מעביד"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,611,50,18]},{"value":"(1537213)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","שלא יועדו ע\"י מוסדות המלכ\"ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[223,672,73,18]},{"value":"(464404)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","שלא יועדו ע\"י מוסדות המלכ\"ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[130,672,70,18]},{"value":"42190723","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","שיועדו ע\"י מוסדות המלכ\"ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,687,70,18]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","שיועדו ע\"י מוסדות המלכ\"ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,687,52,18]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,703,62,18]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,703,56,18]},{"value":"42295758","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,720,70,20]},{"value":"1006233","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו","נכסים נטו:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,720,64,20]},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התחייבויות ונכסים נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,748,70,20]},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התחייבויות ונכסים נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,748,64,20]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"4","type":"other","title":"דוחות על הפעילויות"},"facts":[{"value":"1182689","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2024-12-31","path":["מחזור הפעילויות:","הקצבות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,305,73,27]},{"value":"1200704","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2023-12-31","path":["מחזור הפעילויות:","הקצבות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[114,305,71,27]},{"value":"929884","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["מחזור הפעילויות:","שכר לימוד והשתתפויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[215,330,62,26]},{"value":"864227","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["מחזור הפעילויות:","שכר לימוד והשתתפויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,330,61,26]},{"value":"411371","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["מחזור הפעילויות:","תרומות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[216,354,60,26]},{"value":"614831","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["מחזור הפעילויות:","תרומות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,354,60,26]},{"value":"2523944","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["מחזור הפעילויות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[203,379,73,26]},{"value":"2679762","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["מחזור הפעילויות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,379,73,26]},{"value":"795690","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","משכורות ותוספות סוציאליות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[217,461,54,22]},{"value":"919976","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","משכורות ותוספות סוציאליות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,458,62,25]},{"value":"754895","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","מלגות לאברכים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[216,487,51,17]},{"value":"849868","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","מלגות לאברכים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[126,484,56,20]},{"value":"471840","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2024-12-31","path":["עלות הפעילויות:","כלכלת תלמידים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[217,513,50,17]},{"value":"448860","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2023-12-31","path":["עלות הפעילויות:","כלכלת תלמידים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,510,55,20]},{"value":"186727","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","אחזקת מבנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[218,538,48,17]},{"value":"243092","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","אחזקת מבנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[129,534,54,20]},{"value":"20755","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","אירועים וכנסים חברתיים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[223,562,43,16]},{"value":"22586","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","אירועים וכנסים חברתיים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,559,49,19]},{"value":"48392","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","הסעות תלמידים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,588,43,16]},{"value":"28663","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","הסעות תלמידים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[134,585,49,19]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:","פחת מרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,611,41,16]},{"value":"17069","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:","פחת מרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[138,607,48,19]},{"value":"2294329","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["עלות הפעילויות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,633,61,17]},{"value":"2530114","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["עלות הפעילויות:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[120,633,58,17]},{"value":"229615","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["הכנסות נטו מפעילויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[211,665,56,20]},{"value":"149648","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["הכנסות נטו מפעילויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,665,49,17]},{"value":"489126","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2024-12-31","path":["הוצאות הנהלה וכלליות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[212,684,61,23]},{"value":"290228","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2023-12-31","path":["הוצאות הנהלה וכלליות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[123,681,62,23]},{"value":"(259511)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[199,711,70,20]},{"value":"(140580)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,709,74,22]},{"value":"18884","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2024-12-31","path":["הכנסות מימון, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[221,739,46,15]},{"value":"98807","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2023-12-31","path":["הכנסות מימון, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[128,734,52,22]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[201,761,67,20]},{"value":"(41773)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[111,756,70,24]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["הוצאות אחרות, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,788,17,12]},{"value":"85099","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["הוצאות אחרות, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[130,780,52,22]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["הכנסות (הוצאות) נטו לשנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[195,803,81,23]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["הכנסות (הוצאות) נטו לשנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,805,52,23]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"5","type":"cash_flow","title":"דוחות על תזרימי מזומנים"},"facts":[{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות שוטפת","הכנסות (הוצאות) נטו לשנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[227,294,66,16]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות שוטפת","הכנסות (הוצאות) נטו לשנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[157,294,43,16]},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות שוטפת","התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת (ראה להלן)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[243,340,63,19]},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות שוטפת","התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת (ראה להלן)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,340,67,19]},{"value":"(186722)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות שוטפת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,362,81,19]},{"value":"(30953)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות שוטפת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,362,67,19]},{"value":"253097","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות השקעה","תמורה ממכירת ניירות ערך, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[238,417,55,16]},{"value":"327","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות השקעה","תמורה ממכירת ניירות ערך, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[171,417,29,16]},{"value":"32667923","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות השקעה","תמורה ממכירת מקרקעין"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[230,442,63,16]},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות השקעה","תמורה ממכירת מקרקעין"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,442,56,16]},{"value":"(31992327)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות השקעה","השקעה בפיקדונות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,465,70,16]},{"value":"(7016757)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות השקעה","השקעה בפיקדונות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,465,62,16]},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות השקעה","רכישת רכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,485,73,19]},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות השקעה","רכישת רכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,489,64,16]},{"value":"80481","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["תזרימי מזומנים מפעילות השקעה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,512,57,16]},{"value":"561521","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["תזרימי מזומנים מפעילות השקעה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,513,58,15]},{"value":"(106241)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","גידול (קיטון) במזומנים ושווה מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[226,544,70,16]},{"value":"530568","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","גידול (קיטון) במזומנים ושווה מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,544,58,16]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","יתרת מזומנים ושווה מזומנים לתחילת השנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,568,64,16]},{"value":"321057","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","יתרת מזומנים ושווה מזומנים לתחילת השנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,568,58,16]},{"value":"745384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","יתרת מזומנים ושווה מזומנים לסוף השנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,590,64,16]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["גידול (קיטון) במזומנים ושווה מזומנים","יתרת מזומנים ושווה מזומנים לסוף השנה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,590,58,16]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים","פחת מרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,666,55,18]},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים","פחת מרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,663,51,22]},{"value":"(37951)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים","רווח ממימוש והתאמת ערך ניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,690,73,19]},{"value":"(31369)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים","רווח ממימוש והתאמת ערך ניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,687,67,22]},{"value":"(21921)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,713,73,19]},{"value":"(14301)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","הוצאות (הכנסות) שאינן כרוכות בתזרימי מזומנים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,710,67,22]},{"value":"(6644)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות","גידול בחייבים ויתרות חובה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[225,769,73,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות","גידול בחייבים ויתרות חובה"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,768,19,16]},{"value":"82470","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות","גידול (קיטון) בזכאים ויתרות זכות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[231,791,69,22]},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות","גידול (קיטון) בזכאים ויתרות זכות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,789,73,22]},{"value":"75826","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,811,58,22]},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת","שינויים בסעיפי רכוש והתחייבויות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,811,73,22]},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,858,69,22]},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["התאמות הדרושות כדי להציג את תזרימי המזומנים מפעילות שוטפת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,858,73,22]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"6","type":"profits","title":"דוח על השינויים בנכסים נטו שלא קיימת לגביהם הגבלה"},"facts":[{"value":"(238349)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["יתרה ליום 1 בינואר 2023","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,397,59,17]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["יתרה ליום 1 בינואר 2023","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,397,44,16]},{"value":"540685","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["יתרה ליום 1 בינואר 2023","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,396,45,15]},{"value":"962907","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["יתרה ליום 1 בינואר 2023","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,396,45,15]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","הכנסות נטו לשנה","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,444,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","הכנסות נטו לשנה","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,446,5,3]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","הכנסות נטו לשנה","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,446,5,3]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","הכנסות נטו לשנה","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,444,38,15]},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","העברת סכומים לרכישת רכוש קבוע","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,471,59,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","העברת סכומים לרכישת רכוש קבוע","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,472,5,3]},{"value":"286449","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","העברת סכומים לרכישת רכוש קבוע","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,470,45,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","העברת סכומים לרכישת רכוש קבוע","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,472,5,3]},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","סכומים שיועדו לכיסוי הוצאות פחת","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,496,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","סכומים שיועדו לכיסוי הוצאות פחת","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,498,5,3]},{"value":"(17068)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","סכומים שיועדו לכיסוי הוצאות פחת","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,496,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["שינויים במהלך שנת 2023:","סכומים שיועדו לכיסוי הוצאות פחת","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,498,5,3]},{"value":"(464404)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["יתרה ליום 31 בדצמבר 2023","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,523,59,16]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["יתרה ליום 31 בדצמבר 2023","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,522,44,16]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["יתרה ליום 31 בדצמבר 2023","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,522,45,15]},{"value":"1006233","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["יתרה ליום 31 בדצמבר 2023","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[124,522,54,16]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הוצאות נטו לשנה","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,571,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הוצאות נטו לשנה","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,573,5,3]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הוצאות נטו לשנה","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,573,5,3]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הוצאות נטו לשנה","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,571,65,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"באור 1ב.","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שהתקבלו ויועדו לרכישת רכוש קבוע (ראה באור 1ב.)","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,618,5,3]},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"באור 1ב.","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שהתקבלו ויועדו לרכישת רכוש קבוע (ראה באור 1ב.)","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[291,617,65,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"באור 1ב.","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שהתקבלו ויועדו לרכישת רכוש קבוע (ראה באור 1ב.)","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,618,5,3]},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"באור 1ב.","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שהתקבלו ויועדו לרכישת רכוש קבוע (ראה באור 1ב.)","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,616,65,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הכנסות מימון שנצברו בפקדונות בבנק","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,640,5,3]},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הכנסות מימון שנצברו בפקדונות בבנק","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,639,44,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הכנסות מימון שנצברו בפקדונות בבנק","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,640,5,3]},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","הכנסות מימון שנצברו בפקדונות בבנק","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,638,45,16]},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","העברת סכומים לרכישת רכוש קבוע","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,663,59,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","העברת סכומים לרכישת רכוש קבוע","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,664,5,3]},{"value":"848212","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","העברת סכומים לרכישת רכוש קבוע","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,662,45,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","העברת סכומים לרכישת רכוש קבוע","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,664,5,3]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שיועדו לכיסוי הוצאות פחת","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,686,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שיועדו לכיסוי הוצאות פחת","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,689,5,3]},{"value":"(16030)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שיועדו לכיסוי הוצאות פחת","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,686,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["שינויים במהלך שנת 2024:","סכומים שיועדו לכיסוי הוצאות פחת","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,689,5,3]},{"value":"(1537213)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["יתרה ליום 31 בדצמבר 2024","לשימוש לפעילויות שלא יועדו ע''י מוסדות המלכ''ר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[384,710,66,17]},{"value":"42190723","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["יתרה ליום 31 בדצמבר 2024","שיועדו ע''י מוסדות המלכ''ר להשקעה ברכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[291,710,65,16]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["יתרה ליום 31 בדצמבר 2024","ששימשו לרכוש קבוע"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,709,63,15]},{"value":"42295758","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["יתרה ליום 31 בדצמבר 2024","סה''כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,709,65,16]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע\"ר)","page_num":"7","type":"notes","title":"באורים לדוחות הכספיים"},"facts":[{"value":"4","comment":"2","is_note":true,"note":"2","note_reference":"","date":null,"path":["2. עיקרי המדיניות החשבונאית","ד. רכוש קבוע","(2) פחת מהרכוש הקבוע מחושב בשיטת הקו הישר בשיעורים השנתיים הבאים","מבנה"],"currency":null,"scale":null,"value_type":"%","bbox":[300,719,12,18]},{"value":"","comment":"2","is_note":true,"note":"2","note_reference":"7-10","date":null,"path":["2. עיקרי המדיניות החשבונאית","ד. רכוש קבוע","(2) פחת מהרכוש הקבוע מחושב בשיטת הקו הישר בשיעורים השנתיים הבאים","ריהוט וציוד"],"currency":null,"scale":null,"value_type":"%","bbox":[286,742,33,19]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע''ר)","page_num":"8","type":"notes","title":"ביאורים לדוחות הכספיים"},"facts":[{"value":"1299782","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","מבנה","עלות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[408,347,61,17]},{"value":"1214744","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","מבנה","פחת שנצבר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[324,347,62,17]},{"value":"85038","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","מבנה","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,347,44,16]},{"value":"86974","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. רכוש קבוע","א. הרכב","מבנה","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[150,348,42,16]},{"value":"475416","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","ריהוט וציוד","עלות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[414,370,55,17]},{"value":"276813","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","ריהוט וציוד","פחת שנצבר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[333,370,51,17]},{"value":"198603","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","ריהוט וציוד","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,371,50,16]},{"value":"140060","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. רכוש קבוע","א. הרכב","ריהוט וציוד","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,371,50,16]},{"value":"1775198","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ","עלות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[406,394,63,17]},{"value":"1491557","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ","פחת שנצבר"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[324,394,61,17]},{"value":"283641","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[240,394,49,16]},{"value":"227034","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[145,395,49,16]},{"value":"1358607","comment":"4","is_note":true,"note":"4","note_reference":"ב. להלן","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","תשלומים על-חשבון מבנה בתכנון (ב. להלן)","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[227,422,59,20]},{"value":"583032","comment":"4","is_note":true,"note":"4","note_reference":"ב. להלן","date":"2023-12-31","path":["4. רכוש קבוע","א. הרכב","תשלומים על-חשבון מבנה בתכנון (ב. להלן)","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[143,424,50,18]},{"value":"1642248","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ רכוש קבוע","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,447,59,19]},{"value":"810066","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. רכוש קבוע","א. הרכב","סה\"כ רכוש קבוע","עלות מופחתת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,448,52,18]},{"value":"61907","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. זכאים ויתרות זכות","הרכב :","ספקים ונותני שירותים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,710,44,18]},{"value":"40447","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. זכאים ויתרות זכות","הרכב :","ספקים ונותני שירותים"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[148,710,47,18]},{"value":"25000","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. זכאים ויתרות זכות","הרכב :","בעלי מניות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[243,735,43,18]},{"value":"","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. זכאים ויתרות זכות","הרכב :","בעלי מניות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[158,736,16,17]},{"value":"50847","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. זכאים ויתרות זכות","הרכב :","שכר ונלוות לשלם"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,758,43,18]},{"value":"43712","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. זכאים ויתרות זכות","הרכב :","שכר ונלוות לשלם"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,757,49,19]},{"value":"137754","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. זכאים ויתרות זכות","הרכב :","סה\"כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[237,783,47,18]},{"value":"84159","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. זכאים ויתרות זכות","הרכב :","סה\"כ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,781,50,20]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע''ר)","page_num":"9","type":"notes","title":"באורים לדוחות הכספיים"},"facts":[{"value":"990027","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. הקצבות ותמיכות","הרכב","ממשרד החינוך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[257,431,54,20]},{"value":"973336","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. הקצבות ותמיכות","הרכב","ממשרד החינוך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,434,52,18]},{"value":"192662","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. הקצבות ותמיכות","הרכב","ממשרד החינוך - מוסדות דת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[260,457,52,17]},{"value":"227368","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. הקצבות ותמיכות","הרכב","ממשרד החינוך - מוסדות דת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[170,455,50,18]},{"value":"1182689","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. הקצבות ותמיכות","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,481,63,22]},{"value":"1200704","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. הקצבות ותמיכות","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,480,61,22]},{"value":"81990","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. כלכלת תלמידים","הרכב","משכורות ונלוות לעובדי מטבח"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,626,45,19]},{"value":"81529","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. כלכלת תלמידים","הרכב","משכורות ונלוות לעובדי מטבח"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,624,44,19]},{"value":"389850","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. כלכלת תלמידים","הרכב","קניות מזון וכלי מטבח"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,648,49,18]},{"value":"367331","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. כלכלת תלמידים","הרכב","קניות מזון וכלי מטבח"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[162,647,48,18]},{"value":"471840","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. כלכלת תלמידים","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[240,673,52,22]},{"value":"448860","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. כלכלת תלמידים","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[160,671,51,20]},{"value":"382675","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","משכורות ונלוות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[229,839,65,22]},{"value":"217349","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","משכורות ונלוות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,836,62,20]},{"value":"80212","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","שכר מקצועי"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[241,862,56,20]},{"value":"51728","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","שכר מקצועי"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[153,859,54,19]},{"value":"7093","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","טלפון ותקשורת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,883,46,19]},{"value":"6533","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","טלפון ותקשורת"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[162,882,43,18]},{"value":"16484","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","משרדיות ונסיעות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[241,906,55,20]},{"value":"12203","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","משרדיות ונסיעות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,905,52,20]},{"value":"2662","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","אגרות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,929,47,20]},{"value":"2415","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב","אגרות"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[160,929,46,20]},{"value":"489126","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,955,68,22]},{"value":"290228","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. הוצאות הנהלה וכלליות","הרכב"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,952,64,20]}]}
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema.
You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`. Return ONLY valid JSON. Do NOT return markdown, code fences, comments, prose, or extra keys. Top-level schema (exact keys only): { "meta": { "entity_name": "<string or null>", "page_num": "<string or null>", "type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other", "title": "<string or null>" }, "facts": [ { "bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> }, "value": "<string>", "comment": "<string or null>", "is_note": <true|false>, "note": "<string or null>", "note_reference": "<string>", "date": "<string or null>", "path": ["<string>", "..."], "currency": "ILS|USD|EUR|GBP|null", "scale": 1|1000|1000000|null, "value_type": "amount|%|null" } ] } Type/validation rules (must match schema): 1. `meta` and `facts` are required. 2. `note_reference` is required string. Use "" when missing. 3. `path` is required list of strings (use [] when unknown, never null). 4. `is_note` must be boolean (never null and never "true"/"false" strings). 5. `date` must be `YYYY` or `YYYY-MM-DD` when provided. 6. `value` rules: - If the value is a percentage, include `%` (for example `12%`, `12.5%`). - If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`. - For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`). 7. Use JSON null literal for missing optional values (never "null" string). 8. Do not include any keys not listed above. Extraction rules: 1. Extract all visible numeric/table facts, including negatives in parentheses and totals. 2. If source is a dash placeholder (`-`, `—`, `–`), still extract the fact but set `value` to empty string `""`. 3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`). 4. For `%` values, keep `%` in `value`. 5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image. 6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null. 7. `is_note`: true when the fact is itself inside a note section, else false. 8. `note`: use when this fact belongs to data presented inside a note section; else null. 9. `note_reference`: use when this fact points/references another note; else "". 10. `currency`: infer from page/header context (for example "שקלים חדשים" -> "ILS"), else null. 11. `scale`: 1 unless page/header indicates thousands or millions. 12. `value_type`: "amount" unless the fact is a percentage ("%"). 13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing. 14. `meta.type`: use "profits" for "דוחות על הפעילויות"; otherwise choose the best enum value. 15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain). 16. Output UTF-8 Hebrew directly (do not escape to unicode sequences). Path hierarchy rule: 1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item). 2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields. 3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`. 4. Keep labels exactly as shown. Do not invent levels.
{"meta":{"entity_name":"\"המעיין\" קרן מלגות למחוננים (ע''ר)","page_num":"10","type":"notes","title":"באורים לדוחות הכספיים"},"facts":[{"value":"","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["הכנסות מימון, נטו","רבית מפקדונות בבנק"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[264,350,7,16]},{"value":"84155","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["הכנסות מימון, נטו","רבית מפקדונות בבנק"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,349,45,18]},{"value":"37951","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["הכנסות מימון, נטו","רווח ממימוש והתאמת ערך ניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[247,375,45,18]},{"value":"31369","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["הכנסות מימון, נטו","רווח ממימוש והתאמת ערך ניירות ערך"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,375,45,18]},{"value":"(19067)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["הכנסות מימון, נטו","ריבית ועמלות בנק"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[245,399,50,18]},{"value":"(16717)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["הכנסות מימון, נטו","ריבית ועמלות בנק"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,399,50,18]},{"value":"18884","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["הכנסות מימון, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[247,422,45,19]},{"value":"98807","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["הכנסות מימון, נטו"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,422,45,19]}]}