From b20755bb82c765288cbe530f60fd1beea356e2ac Mon Sep 17 00:00:00 2001 From: Arthur Souza Rodrigues Date: Sun, 17 May 2026 07:50:56 -0400 Subject: [PATCH] =?UTF-8?q?idx=3D10:=20freeze=20(6=20records)=20=E2=80=94?= =?UTF-8?q?=20Mylan=20N.V.=202003=20LTIP=20Amendment=20clean=20under=20exi?= =?UTF-8?q?sting=20parser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Brief 2-section amendment to Mylan's Amended and Restated 2003 Long-Term Incentive Plan. doc2dict tree is shallow (introduction → exhibit envelope → predicted-header chain → preamble + 2 numbered amendments). Existing parser handles it cleanly: - L0: title (merged predicted-header pair "AMENDMENT TO\n…2003 LONG-TERM INCENTIVE PLAN") via the existing multi-line title merge - L1: preamble (carries text-leaf 6 "1.Section 6.03(e)(iii)…" absorbed into the preamble's body because doc2dict tagged it as a text leaf rather than a numbered-section header — no marker space) - L1: "Retirement." replacement header (carries closing text-leaf 11 "All other provisions…" via doc2dict's natural body grouping) - L3: "(A)…" and "(B)…" sub-items under Retirement. (capletter marker → rubric depth 3 via _LEVEL_PATTERNS) - L1: "2. The clause…" second numbered amendment Reconstruction: 100.0% word coverage, 98.6% char ratio (well above 90% gate). The only missing tokens are "Exhibit" and "10" from the SEC envelope (correctly dropped via is_envelope detection). No parser changes needed. All 11 frozen idxs (0..10) regress OK. --- data/auto_parse/level_freeze/frozen/idx_10.jsonl | 6 ++++++ data/auto_parse/level_freeze/state.json | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 data/auto_parse/level_freeze/frozen/idx_10.jsonl diff --git a/data/auto_parse/level_freeze/frozen/idx_10.jsonl b/data/auto_parse/level_freeze/frozen/idx_10.jsonl new file mode 100644 index 0000000..2c29161 --- /dev/null +++ b/data/auto_parse/level_freeze/frozen/idx_10.jsonl @@ -0,0 +1,6 @@ +{"idx": 10, "order": 0, "level": 0, "span": "AMENDMENT TO\nAMENDED AND RESTATED 2003 LONG-TERM INCENTIVE PLAN"} +{"idx": 10, "order": 1, "level": 1, "span": "This Amendment (the “Amendment”) to the Mylan N.V. Amended and Restated 2003 Long-Term Incentive Plan (the “Plan”) is adopted as of the 23rd day of February, 2017 (the “Amendment Effective Date”) by Mylan N.V., a public limited liability company (naamloze vennootschap) incorporated under the laws of the Netherlands (the “Company”). The Company hereby amends the Plan as follows:\n1.Section 6.03(e)(iii) is hereby deleted and replaced with the following:"} +{"idx": 10, "order": 2, "level": 1, "span": "Retirement.\nAll other provisions of the Plan, as amended by the foregoing, shall remain in full force and effect notwithstanding the adoption of this Amendment."} +{"idx": 10, "order": 3, "level": 3, "span": "(A)     With respect to Options and Stock Appreciation Rights granted prior to the Amendment Effective Date, unless otherwise provided in an Award Agreement, if a Participant’s employment by the Company or its Subsidiaries shall terminate because of Retirement, any Option and Stock Appreciation Right then held by the Participant, regardless of whether it was otherwise exercisable on the date of Retirement, may be exercised by the Participant at any time, or from time to time, during the balance of the exercise period as set forth in Section 6.03(b)(iii)\nIf such a Participant dies after Retirement but before such Participant’s Options have either been exercised or otherwise expired, such Options may be exercised by the person to whom such Options pass by will or applicable law or, if no person has that right, by the Participant’s executors or administrators at any time, or from time to time, during the balance of the exercise period set forth in Section 6.03(b)(iii)."} +{"idx": 10, "order": 4, "level": 3, "span": "(B)    With respect to Options and Stock Appreciation Rights granted on or after the Amendment Effective Date, notwithstanding anything in this Article VI to the contrary, the Committee may, in its sole discretion, waive the forfeiture period and any other conditions set forth in any Award Agreement under appropriate circumstances (including the death, Permanent Disability or Retirement of the Participant or a material change in circumstances arising after the date of an Award) and subject to such terms and conditions (including forfeiture of a proportionate number of the Options and Stock Appreciation Rights) as the Committee shall deem appropriate provided that such waiver is done in a manner intended to comply with Section 409A of the Code."} +{"idx": 10, "order": 5, "level": 1, "span": "2.    The clause “the minimum amount of any withholding or other tax required by law to be withheld” in the first sentence of Section 11.05 shall be deleted and replaced with the clause “up to the maximum amount of any withholding or other tax permitted by law to be withheld” and the clause “the minimum amount of any taxes required to be withheld” in clause (ii) of the final sentence of Section 11.05 shall be deleted and replaced with the clause “an amount equal to the withholding taxes due”."} diff --git a/data/auto_parse/level_freeze/state.json b/data/auto_parse/level_freeze/state.json index b237ae6..e8c94a9 100644 --- a/data/auto_parse/level_freeze/state.json +++ b/data/auto_parse/level_freeze/state.json @@ -10,7 +10,8 @@ 6, 7, 8, - 9 + 9, + 10 ], "history": [ { @@ -185,6 +186,12 @@ "action": "freeze", "idx": 9, "n_records": 20 + }, + { + "ts": "2026-05-17T07:50:23", + "action": "freeze", + "idx": 10, + "n_records": 6 } ] }