Hi, all, The update looks good to me, but I found that there are still some validation errors in the examples , and also one issue in the YANG module that needs to be fixed, as listed below. I also attached the files in case there is formatting issue. I apologize for not being able to recognizing these problems earlier.
(1) Sec.6 YANG Module: s/derived-from/derived-from-or-self/
(1.1)
OLD:
leaf period-start {
type yang:timeticks;
must "(not(derived-from(../../frequency,"
+ "'schedule:secondly')) or (current() < 100)) and "
+ "(not(derived-from(../../frequency,"
+ "'schedule:minutely')) or (current() < 6000)) and "
+ "(not(derived-from(../../frequency,'schedule:hourly'))"
+ " or (current() < 360000)) and "
+ "(not(derived-from(../../frequency,'schedule:daily'))"
+ " or (current() < 8640000)) and "
+ "(not(derived-from(../../frequency,'schedule:weekly'))"
+ " or (current() < 60480000)) and "
+ "(not(derived-from(../../frequency,"
+ "'schedule:monthly')) or (current() < 267840000)) and "
+ "(not(derived-from(../../frequency,'schedule:yearly'))"
+ " or (current() < 3162240000))" {
error-message
"The 'period-start' must not exceed the frequency
interval.";
}
NEW:
leaf period-start {
type yang:timeticks;
must "(not(derived-from-or-self(../../frequency,"
+ "'schedule:secondly')) or (current() < 100)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:minutely')) or (current() < 6000)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:hourly')) or (current() < 360000)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:daily')) or (current() < 8640000)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:weekly')) or (current() < 60480000)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:monthly')) or (current() < 267840000)) and "
+ "(not(derived-from-or-self(../../frequency,"
+ "'schedule:yearly')) or (current() < 3162240000))" {
error-message
"The 'period-start' must not exceed the frequency
interval.";
}
(1.2)
OLD:
leaf-list direction {
when "derived-from(../../frequency, 'schedule:monthly') or "
+ "(derived-from(../../frequency, 'schedule:yearly') "
+ " and not(../../byyearweek))";
NEW:
leaf-list direction {
when "derived-from-or-self(../../frequency, "
+ "'schedule:monthly') or "
+ "(derived-from-or-self(../../frequency,"
+ "'schedule:yearly') and not(../../byyearweek))";
(1.3)
OLD:
leaf-list byyearweek {
when "derived-from(../frequency, 'schedule:yearly')";
type int32 {
range "-53..-1|1..53";
}
NEW:
leaf-list byyearweek {
when "derived-from-or-self(../frequency, 'schedule:yearly')";
type int32 {
range "-53..-1|1..53";
}
(2) A.5 figure 17: Node "time-zone-identifier" not found as a child of
"recurrence-first" node.
OLD:
{
"example-sch-usage-5:recurrence-with-time-zone": {
"recurrence-first": {
"start-time": "2025-12-01T15:00:00",
"duration": "PT00:10:00",
"time-zone-identifier": "America/New_York"
},
"frequency": "ietf-schedule:hourly",
"interval": 2,
"count": 10
}
}
NEW:
{
"example-sch-usage-5:recurrence-with-time-zone": {
"recurrence-first": {
"start-time": "2025-12-01T15:00:00",
"duration": "PT00:10:00"
},
"time-zone-identifier": "America/New_York",
"frequency": "ietf-schedule:hourly",
"interval": 2,
"count": 10
}
}
(3) A.6 figure 18: Invalid non-number-encoded uint32 value
OLD:
{
"example-sch-usage-6:recurrence-utc-with-periods": {
"recurrence-first": {
"start-time-utc": "2025-06-01T09:00:00Z"
},
"frequency": "ietf-schedule:daily",
"interval": 2,
"utc-until": "2025-06-30T23:59:59Z",
"period-timeticks": [
{
"period-start": "3240000",
"period-end": "3420000"
},
{
"period-start": "5400000",
"period-end": "5640000"
}
]
}
}
NEW:
{
"example-sch-usage-6:recurrence-utc-with-periods": {
"recurrence-first": {
"start-time-utc": "2025-06-01T09:00:00Z"
},
"frequency": "ietf-schedule:daily",
"interval": 2,
"utc-until": "2025-06-30T23:59:59Z",
"period-timeticks": [
{
"period-start": 3240000,
"period-end": 3420000
},
{
"period-start": 5400000,
"period-end": 5640000
}
]
}
}
(4) A.7 figure 19: Node "time-zone-identifier" not found as a child of
"recurrence-first" node.
OLD:
{
"example-sch-usage-7:recurrence-time-zone-with-periods": {
"recurrence-first": {
"start-time": "2025-12-01T09:00:00",
"duration": "PT00:15:00",
"time-zone-identifier": "America/New_York"
},
"frequency": "ietf-schedule:minutely",
"interval": 30,
"until": "2025-12-01T17:00:00Z",
"period": [
{
"period-start": "2025-12-01T18:00:00",
"duration": "PT00:20:00"
},
{
"period-start": "2025-12-01T18:30:00",
"duration": "PT00:20:00"
}
]
}
}
NEW:
{
"example-sch-usage-7:recurrence-time-zone-with-periods": {
"recurrence-first": {
"start-time": "2025-12-01T09:00:00",
"duration": "PT00:15:00"
},
"time-zone-identifier": "America/New_York",
"frequency": "ietf-schedule:minutely",
"interval": 30,
"until": "2025-12-01T17:00:00Z",
"period": [
{
"period-start": "2025-12-01T18:00:00",
"duration": "PT00:20:00"
},
{
"period-start": "2025-12-01T18:30:00",
"duration": "PT00:20:00"
}
]
}
}
(5) A.8 figure 20: Node "time-zone-identifier" not found as a child of
"recurrence-first" node.
OLD:
{
"example-sch-usage-8:icalendar-recurrence": {
"recurrence-first": {
"start-time": "2024-01-27T08:00:00",
"time-zone-identifier": "America/New_York"
},
"frequency": "ietf-schedule:monthly",
"count": 10,
"byday": [
{
"direction": [
-1
],
"weekday": "saturday"
}
]
}
}
NEW:
{
"example-sch-usage-8:icalendar-recurrence": {
"recurrence-first": {
"start-time": "2024-01-27T08:00:00"
},
"time-zone-identifier": "America/New_York",
"frequency": "ietf-schedule:monthly",
"count": 10,
"byday": [
{
"direction": [
-1
],
"weekday": "saturday"
}
]
}
}
(6) A.8: Figure 21 Unsatisfied pattern - "2025-01-01"
OLD:
{
"example-sch-usage-8:icalendar-recurrence": {
"recurrence-first": {
"start-time": "2025-01-01"
},
"frequency": "ietf-schedule:monthly",
"until": "2025-12-25",
"byday": [
{
"weekday": "monday"
},
{
"weekday": "tuesday"
},
{
"weekday": "wednesday"
},
{
"weekday": "thursday"
},
{
"weekday": "friday"
}
],
"bysetpos": [
-1
]
}
}
NEW:
{
"example-sch-usage-8:icalendar-recurrence": {
"recurrence-first": {
"start-time": "2025-01-01T00:00:00"
},
"frequency": "ietf-schedule:monthly",
"until": "2025-12-25T23:59:59",
"byday": [
{
"weekday": "monday"
},
{
"weekday": "tuesday"
},
{
"weekday": "wednesday"
},
{
"weekday": "thursday"
},
{
"weekday": "friday"
}
],
"bysetpos": [
-1
]
}
}
(7) A.9 figure 23: Expected JSON name/[null], but input data contains
name/string.
OLD:
{
"example-sch-usage-1:schedule-status": {
"state": "ietf-schedule:enabled",
"version": 1,
"schedule-type": "ietf-schedule:recurrence",
"counter": 9,
"last-occurrence": [
"2025-12-01T12:00:00Z"
],
"upcoming-occurrence": [
"2025-12-01T12:20:00Z"
]
}
}
NEW:
{
"example-sch-usage-1:schedule-status": {
"state": "ietf-schedule:enabled",
"version": 1,
"schedule-type": "ietf-schedule:recurrence",
"counter": 9,
"last-occurrence": "2025-12-01T12:00:00Z",
"upcoming-occurrence": "2025-12-01T12:20:00Z"
}
}
(8) B.2 Figure 24: s/utc-start-time/start-time-utc/
OLD:
<?xml version="1.0" encoding="utf-8"?>
<link-attributes
xmlns="http://example.com/example-scheduled-link-bandwidth"
xmlns:schedule="urn:ietf:params:xml:ns:yang:ietf-schedule">
<link>
<source-node>ne1</source-node>
<destination-node>ne2</destination-node>
<default-bandwidth>1000</default-bandwidth>
<recurrence-first>
<utc-start-time>2025-12-01T01:00:00Z</utc-start-time>
</recurrence-first>
<frequency>schedule:daily</frequency>
<utc-until>2025-12-31T23:59:59Z</utc-until>
<period-timeticks>
<period-start>360000</period-start>
<period-end>2160000</period-end>
<scheduled-bandwidth>500</scheduled-bandwidth>
</period-timeticks>
<period-timeticks>
<period-start>7920000</period-start>
<period-end>8280000</period-end>
<scheduled-bandwidth>800</scheduled-bandwidth>
</period-timeticks>
</link>
</link-attributes>
NEW:
<?xml version="1.0" encoding="utf-8"?>
<link-attributes
xmlns="http://example.com/example-scheduled-link-bandwidth"
xmlns:schedule="urn:ietf:params:xml:ns:yang:ietf-schedule">
<link>
<source-node>ne1</source-node>
<destination-node>ne2</destination-node>
<default-bandwidth>1000</default-bandwidth>
<recurrence-first>
<start-time-utc>2025-12-01T01:00:00Z</start-time-utc>
</recurrence-first>
<frequency>schedule:daily</frequency>
<utc-until>2025-12-31T23:59:59Z</utc-until>
<period-timeticks>
<period-start>360000</period-start>
<period-end>2160000</period-end>
<scheduled-bandwidth>500</scheduled-bandwidth>
</period-timeticks>
<period-timeticks>
<period-start>7920000</period-start>
<period-end>8280000</period-end>
<scheduled-bandwidth>800</scheduled-bandwidth>
</period-timeticks>
</link>
</link-attributes>
-----Original Message-----
From: Alanna Paloma [mailto:[email protected]]
Sent: Wednesday, February 25, 2026 2:11 AM
To: [email protected]; mohamed.boucadair <[email protected]>;
maqiufang (A) <[email protected]>
Cc: King, Daniel <[email protected]>; [email protected]; Qin Wu
<[email protected]>; [email protected]; [email protected];
[email protected]; [email protected]
Subject: Re: [AD] [External] AUTH48: RFC-to-be 9922
<draft-ietf-netmod-schedule-yang-10> for your review
Hi Authors and Mahesh (AD)*,
*Mahesh - In addition to our previously sent questions, please review and
approve of the updated example modules in Appendices A and C.
See this diff file:
https://www.rfc-editor.org/authors/rfc9922-auth48diff.html
Qiufang and Med,
Thank you for your replies. We’ve updated the files accordingly.
The files have been posted here (please refresh):
https://www.rfc-editor.org/authors/rfc9922.md
https://www.rfc-editor.org/authors/rfc9922.html
https://www.rfc-editor.org/authors/rfc9922.pdf
https://www.rfc-editor.org/authors/rfc9922.txt
Diff file of the text:
https://www.rfc-editor.org/authors/rfc9922-diff.html
https://www.rfc-editor.org/authors/rfc9922-rfcdiff.html (side by side)
https://www.rfc-editor.org/authors/rfc9922-auth48diff.html (AUTH48 changes)
https://www.rfc-editor.org/authors/rfc9922-auth48rfcdiff.html (AUTH48 changes
side by side)
Diff of the kramdown:
https://www.rfc-editor.org/authors/rfc9922-md-diff.html
https://www.rfc-editor.org/authors/rfc9922-md-rfcdiff.html (side by side)
https://www.rfc-editor.org/authors/rfc9922-md-auth48diff.html (AUTH48 changes)
https://www.rfc-editor.org/authors/rfc9922-md-auth48rfcdiff.html (AUTH48
changes side by side)
For the AUTH48 status of this document, please see:
https://www.rfc-editor.org/auth48/rfc9922
Thank you,
Alanna Paloma
RFC Production Center
> On Feb 23, 2026, at 10:16 PM, [email protected] wrote:
>
> Hi Alanna, all,
>
> Thank you for taking care of the comments. Please find below some follow-up:
>
> # I see that the example in Appendix A wasn’t updated. Is that intended? For
> convenience, here are the NEW versions, including inputs from Qiufang:
>
> ## Appendix A:
> https://raw.githubusercontent.com/netmod-wg/schedule-yang/refs/heads/m
> ain/yang/appendix-a-examples ## Appendix C:
> https://raw.githubusercontent.com/netmod-wg/schedule-yang/refs/heads/m
> ain/yang/example-sch-capacity-res.yang
>
> # Please find this nit in Section 8
>
> OLD: reuising the following groupings will expose privacy-related
> NEW: reusing the following groupings will expose privacy-related
>
> Thank you.
>
> Cheers,
> Med
>
>> -----Message d'origine-----
>> De : Alanna Paloma <[email protected]> Envoyé : mardi 24
>> février 2026 00:58 À : [email protected]; King, Daniel
>> <[email protected]>; BOUCADAIR Mohamed INNOV/NET
>> <[email protected]> Cc : [email protected];
>> [email protected]; [email protected]; [email protected];
>> [email protected]; [email protected];
>> [email protected] Objet : Re: [AD] [External] AUTH48:
>> RFC-to-be 9922 <draft-ietf-
>> netmod-schedule-yang-10> for your review
>>
>>
>> Hi Authors and Mahesh (AD)*,
>>
>> *Mahesh - Please note that we are awaiting your response to the
>> following questions.
>>
>>> 11) <!--[rfced] *AD - Security Considerations Questions
>>>
>>> a) FYI - We updated the Security Considerations section to match
>> the
>>> template at
>>>
>> <https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2
>> Fwiki.ietf.org%2Fgroup%2Fops%2Fyang-security-
>> guidelines&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc45800
>> 70dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7
>> C0%7C639074879231026365%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOn
>> RydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoy
>> fQ%3D%3D%7C0%7C%7C%7C&sdata=denDFnEW7sREP2SSKG2HtvFaalZV8j3L%2Fbin
>> yvF40IU%3D&reserved=0>.
>>> Please review and let us know if any further updates are needed.
>>>
>>> b) As the Writable nodes, Readable nodes, and RFC/action
>> operations
>>> sections are not applicable to this document, do the following
>>> sentences need to be added accordingly (per the template)?
>>>
>>> - "There are no particularly sensitive writable data nodes."
>>> - "There are no particularly sensitive readable data nodes."
>>> - "There are no particularly sensitive RPC or action
>> operations."
>>>
>>> c) We note that in the paragraph that relates to the "No data
>> nodes"
>>> section, there is a sentence missing (i.e., from the template:
>> "For
>>> example, reusing some of these groupings will expose privacy-
>> related
>>> information (e.g., 'node-example')". Is that omission
>> intentional or
>>> should it be added for clarity?
>>>
>>>> From the template:
>>> Modules that use the groupings that are defined in this
>> document
>>> should identify the corresponding security considerations. For
>>> example, reusing some of these groupings will expose
>>> privacy-related information (e.g., 'node-example').
>>>
>>> Current text in the document:
>>> Modules that use the groupings that are defined in this
>> document
>>> should identify the corresponding security considerations, for
>>> example:
>>> -->
>> We’ve updated this text per Med’s suggestion. Please confirm that
>> this new text is acceptable.
>>
>> Current:
>> Modules that use the groupings that are defined in this document
>> should identify the corresponding security considerations. For
>> example, reusing the following groupings will expose privacy- related
>> information:
>>
>> Additionally, this sentence has been added to the end of Section 2.
>> Please review and approve.
>>
>> Current:
>> "schedule-status-*" refers to any of "schedule-status",
>> “schedule-
>> status-with-time-zone", and "schedule-status-with-name".
>>
>> See this diff file:
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-
>> auth48diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc
>> 4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%
>> 7C0%7C0%7C639074879231052452%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hc
>> GkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIld
>> UIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=ZhSF1fjt4J7LVYa%2FgeW7kzb2%2FiyLM
>> 5uHvNsjuSYeK%2F0%3D&reserved=0
>>
>>
>> Med and Dan - Thank you for your replies. We have updated the files
>> as requested.
>>
>> ) FYI - We will make this update after 9907 is published.
>>
>>> # [YANG-GUIDE]: Maybe use RFC9907 as that is about to be
>> published.
>>
>> The files have been posted here (please refresh):
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Fauthors%2Frfc9922.md&data=05%7C02%7Cmohamed.boucadair
>> %40orange.com%7Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40b
>> fbc48b9253b6f5d20%7C0%7C0%7C639074879231063032%7CUnknown%7CTWFpbGZ
>> sb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsI
>> kFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=lh9L%2FwGza2I2A
>> XEEHrKgSyoKQedeO8KkxHFJJf0y2N8%3D&reserved=0
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Fauthors%2Frfc9922.html&data=05%7C02%7Cmohamed.boucada
>> ir%40orange.com%7Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b4
>> 0bfbc48b9253b6f5d20%7C0%7C0%7C639074879231072891%7CUnknown%7CTWFpb
>> GZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiI
>> sIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=3OYkgvpWXIWhT
>> MaHBSYGbIMXd4E3Ux%2FzkKdE7N7OlRo%3D&reserved=0
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Fauthors%2Frfc9922.pdf&data=05%7C02%7Cmohamed.boucadai
>> r%40orange.com%7Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40
>> bfbc48b9253b6f5d20%7C0%7C0%7C639074879231082582%7CUnknown%7CTWFpbG
>> Zsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIs
>> IkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=fxDWjOesnKaFJ%
>> 2BnSNKxGVLK8sBlMi3GVSQURgLlCV28%3D&reserved=0
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Fauthors%2Frfc9922.txt&data=05%7C02%7Cmohamed.boucadai
>> r%40orange.com%7Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40
>> bfbc48b9253b6f5d20%7C0%7C0%7C639074879231092364%7CUnknown%7CTWFpbG
>> Zsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIs
>> IkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=Ud1Kyg39R%2Bj%
>> 2Bg4zlcVHKFA2oHfVJpWX31nX1rgSXKvM%3D&reserved=0
>>
>> Diff file of the text:
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-
>> diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc458007
>> 0dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C
>> 0%7C639074879231102399%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnR
>> ydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyf
>> Q%3D%3D%7C0%7C%7C%7C&sdata=0wbOJhlAN4UJUwCPPa2%2F%2BtqKwaRPH4ZtHOK
>> nRp3UXNE%3D&reserved=0
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-
>> rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc458
>> 0070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0
>> %7C0%7C639074879231111874%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGki
>> OnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIj
>> oyfQ%3D%3D%7C0%7C%7C%7C&sdata=PHGRlhdMpJP3%2BSTGLDNg%2B91mV4vJT8fc
>> Ss%2FzsmsssP8%3D&reserved=0 (side by side)
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-
>> auth48diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc
>> 4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%
>> 7C0%7C0%7C639074879231121870%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hc
>> GkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIld
>> UIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=l7zvC5aaKMxj%2BE3mdMe1I%2FPi26YsE
>> H3CW44iJskuSSM%3D&reserved=0 (AUTH48 changes)
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-
>> auth48rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7
>> Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d
>> 20%7C0%7C0%7C639074879231133799%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU
>> 1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIs
>> IldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=ey%2BW7XewxaDg1Cx27veBMXwUADKJ
>> In0BziGv%2BO2zsd8%3D&reserved=0 (AUTH48 changes side by side)
>>
>> Diff of the kramdown:
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-md-
>> diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc458007
>> 0dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C
>> 0%7C639074879231145481%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnR
>> ydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyf
>> Q%3D%3D%7C0%7C%7C%7C&sdata=i%2FHdGlCga7RBXnRXyzdzs3%2FJsvfrkD1rBd7
>> JTA6ebio%3D&reserved=0
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-md-
>> rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc458
>> 0070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0
>> %7C0%7C639074879231155437%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGki
>> OnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIj
>> oyfQ%3D%3D%7C0%7C%7C%7C&sdata=B3SEguz%2FGn%2FL1cpq52c0i7124%2BZZcM
>> dEYcrFBGshiR4%3D&reserved=0 (side by side)
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-md-
>> auth48diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc
>> 4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%
>> 7C0%7C0%7C639074879231165337%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hc
>> GkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIld
>> UIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=gMkjRj9Q0gPLAG4J5fg%2FeaDCYf89VLj
>> yqEwIA6Tv2uc%3D&reserved=0 (AUTH48 changes)
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-editor.org%2Fauthors%2Frfc9922-md-
>> auth48rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7
>> Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d
>> 20%7C0%7C0%7C639074879231175468%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU
>> 1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIs
>> IldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=yhuIbmHOQnkHtF0tL6cM5XZFeq7nnM
>> r%2BUhCbyyngfpE%3D&reserved=0 (AUTH48 changes side by side)
>>
>> Please review the document carefully as documents do not change once
>> published as RFCs. We will await any further changes and approvals
>> from each author and *Mahesh (AD) prior to moving forward in the
>> publication process.
>>
>> For the AUTH48 status of this document, please see:
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Fauth48%2Frfc9922&data=05%7C02%7Cmohamed.boucadair%40o
>> range.com%7Cdc4580070dde4a6df47108de73376621%7C90c7a20af34b40bfbc4
>> 8b9253b6f5d20%7C0%7C0%7C639074879231185044%7CUnknown%7CTWFpbGZsb3d
>> 8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOI
>> joiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=fBcIf%2Fm1laAG8zD7n
>> xkYXmiV%2FNcNfcIzCM6r1V1L7LA%3D&reserved=0
>>
>> For details of the AUTH48 process in kramdown-rfc (including the
>> two-part approval process), see:
>>
>> https://fra01.safelinks.protection.outlook.com/?url=https%3A%2F%2F
>> www.rfc-
>> editor.org%2Frpc%2Fwiki%2Fdoku.php%3Fid%3Dpilot_test_kramdown_rfc&
>> data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4a6df4
>> 7108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C639074
>> 879231195019%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiO
>> iIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C
>> 0%7C%7C%7C&sdata=WLH%2FWYvqxGALmJ6RsA9PofxQrOHBQB9Zhlur%2FZeRWdk%3
>> D&reserved=0.
>>
>> Thank you,
>> Alanna Paloma
>> RFC Production Center
>>
>>> On Feb 20, 2026, at 3:53 AM, King, Daniel
>> <[email protected]> wrote:
>>>
>>> Hi All,
>>>
>>> Thanks Med!
>>>
>>> It looks like he nailed all the open issues/questions. I agree
>> with all his suggestions.
>>>
>>> BR, Dan.
>>>
>>> -----Original Message-----
>>> From: [email protected]
>> <[email protected]>
>>> Sent: 20 February 2026 10:01
>>> To: [email protected]; [email protected];
>>> [email protected]; King, Daniel <[email protected]>
>>> Cc: [email protected]; [email protected];
>>> [email protected]; [email protected];
>>> [email protected]
>>> Subject: [External] RE: AUTH48: RFC-to-be 9922
>>> <draft-ietf-netmod-schedule-yang-10> for your review
>>>
>>> This email originated outside the University. Check before
>> clicking links or attachments.
>>>
>>> Re-,
>>>
>>> Please find below some comments about the edited version:
>>>
>>> # Section 3.2: as this is a type but also for consistency with
>> other entries, we may consider:
>>>
>>> OLD: one-shot: The schedule will trigger an action that has
>> either
>>> NEW: one-shot: This type is used for schedule that triggers an
>> action
>>> that has either
>>>
>>> # [YANG-GUIDE]: Maybe use RFC9907 as that is about to be
>> published.
>>>
>>> # Appendix:
>>>
>>> OLD: revision "2023-01-19"
>>> NEW: revision "2026-02-20"
>>>
>>> Thank you.
>>>
>>> Cheers,
>>> Med
>>>
>>>> -----Message d'origine-----
>>>> De : [email protected] <[email protected]>
>> Envoyé :
>>>> jeudi 19 février 2026 23:40 À : [email protected];
>>>> [email protected]; BOUCADAIR Mohamed INNOV/NET
>>>> <[email protected]>; [email protected] Cc :
>>>> [email protected]; [email protected]; netmod-
>>>> [email protected]; [email protected];
>> [email protected];
>>>> [email protected] Objet : AUTH48: RFC-to-be 9922
>>>> <draft-ietf-netmod-schedule-yang-
>>>> 10> for your review
>>>>
>>>> *****IMPORTANT*****
>>>>
>>>> Updated 2026/02/18
>>>>
>>>> RFC Authors:
>>>>
>>>> Your document has now entered AUTH48.
>>>>
>>>> The document was edited in kramdown-rfc as part of the RPC
>> pilot test
>>>> (see https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644099922%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=EvzH
>> zi5
>>>> a
>>>> bNLGHN0aC4MBWzyQrc8mixgkR1gTfmbjodQ%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231205046%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=KFCsCL6JyJDadcBFiIVJpYkSRwdB9MLf6aX2NTrcX%2Fs%3D&reserve
>> d=0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 1
>>>>
>> 43418%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>>
>> a=IgKpmKGqE%2BgILPHROri%2Br%2Bj5cbEWCafSQ8by5NwpBs0%3D&reserved=0
>>>>
>> editor.org%2Frpc%2Fwiki%2Fdoku.php%3Fid%3Dpilot_test_kramdown_rfc&
>>>>
>> data=05%7C02%7Cmohamed.boucadair%40orange.com%7C5feba92c49ca4ad46c
>>>>
>> 0e08de7007d8a4%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C639071
>>>>
>> 376168669469%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiO
>>>>
>> iIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C
>>>>
>> 0%7C%7C%7C&sdata=p4DAXopU4mHqoMNaRDdOv%2BDXgk52C6eyyw6CUnjyoRQ%3D&
>>>> reserved=0).
>>>>
>>>> Please review the procedures for AUTH48 using kramdown-rfc:
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644174858%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=uzz1
>> IAF
>>>> %
>>>> 2FkQP23Voe8Q1s8JBuK3d0EMvpE7%2BbgZ%2FNNUI%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231215063%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=k06eIe18vdL6W7EwhPKaPljHi2g0cLhR1y0BSjx2tVA%3D&reserved=
>> 0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 1
>>>>
>> 96959%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>> a=R1DX8sGneg9cngAkHN%2BpzA0IdAaaWZwlmRaXMNjxPfU%3D&reserved=0
>>>>
>> editor.org%2Frpc%2Fwiki%2Fdoku.php%3Fid%3Dpilot_test_instructions_
>>>>
>> completing_auth48_using_kramdown&data=05%7C02%7Cmohamed.boucadair%
>>>>
>> 40orange.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bf
>>>>
>> bc48b9253b6f5d20%7C0%7C0%7C639071376168688005%7CUnknown%7CTWFpbGZs
>>>>
>> b3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIk
>>>>
>> FOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=vAQjz7KFpQbx5zdW
>>>> zta6wyOTozA74cWl%2FlsJX7x%2Bt%2B4%3D&reserved=0
>>>>
>>>> Once your document has completed AUTH48, it will be published
>> as an
>>>> RFC.
>>>>
>>>>
>>>> Files
>>>> -----
>>>>
>>>> The files are available here:
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644227790%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=AjWe
>> s%2
>>>> F
>>>> XFqATq1vRcHSoFxJ1okK7p6aBpchWPATfWjew%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231224937%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=I2QyZlGPzClsgDtTVhMq2Q7j0Z5DC%2FX3Lbf6QFXUqhM%3D&reserve
>> d=0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 2
>>>>
>> 60836%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>> a=Yf5uNmdJzRwLncDOiZijSIXh3rLWFYt1SpFJ8KUtJ7s%3D&reserved=0
>>>>
>> editor.org%2Fauthors%2Frfc9922.md&data=05%7C02%7Cmohamed.boucadair
>>>>
>> %40orange.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40b
>>>>
>> fbc48b9253b6f5d20%7C0%7C0%7C639071376168701733%7CUnknown%7CTWFpbGZ
>>>>
>> sb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsI
>>>>
>> kFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=jmMr05zpHLnAcjW
>>>> EnyhHYHgIqEDfHsAhTXVjBq7tHoc%3D&reserved=0
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644292000%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=uZgR
>> xfU
>>>> 0
>>>> HSnpvA3yqcW8RiOFWUTjDxb%2F05RsbMc3dzE%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231234672%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=jDiHl8Kt9YZXxwyCb%2BuPxBZ5sMargq8gztO0juGt7Ds%3D&reserve
>> d=0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 3
>>>>
>> 32410%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>>
>> a=PxOmlZ4tloTeg19DzLC3PvbYSUV5ZgYYY%2B32sb%2BU1%2Bk%3D&reserved=0
>>>>
>> editor.org%2Fauthors%2Frfc9922.html&data=05%7C02%7Cmohamed.boucada
>>>>
>> ir%40orange.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b4
>>>>
>> 0bfbc48b9253b6f5d20%7C0%7C0%7C639071376168714210%7CUnknown%7CTWFpb
>>>>
>> GZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiI
>>>>
>> sIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=SRDcyzoc9%2F%
>>>> 2BHo4N5TP7SIIMN6OrvuiHH1%2B2T%2Fg1%2BNwY%3D&reserved=0
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644370413%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=rWkD
>> evW
>>>> K
>>>> ZCKuOOyudzKMDacmgeszJJZnIOZUCH8W4i8%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231244082%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=IpYT1MLNV0jp%2FInIlDHbdTA8CBWB0%2F7jpNypcFcQ8ng%3D&reser
>> ved
>>>> =0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 4
>>>>
>> 14643%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>> a=F8%2Bre8GeHMtR7xTDOoAabnfMKPJqBwzetSE79Sg3hfc%3D&reserved=0
>>>>
>> editor.org%2Fauthors%2Frfc9922.pdf&data=05%7C02%7Cmohamed.boucadai
>>>>
>> r%40orange.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40
>>>>
>> bfbc48b9253b6f5d20%7C0%7C0%7C639071376168725338%7CUnknown%7CTWFpbG
>>>>
>> Zsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIs
>>>>
>> IkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=6DLn9UikmmMhE9
>>>> dgVfQ3n3vF6a%2BDjLHImAuQQZ63VpQ%3D&reserved=0
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644454525%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=s0P%
>> 2Bt
>>>> m
>>>> mxvTQsBt1EEdrcu1Yrqwhm9BgdK4Sf39QIJrE%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231253654%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=eG0ZJ3%2BrD74oMrV8F79L3VtuvRr2Eb%2FQwPBee%2BSzPVA%3D&res
>> erv
>>>> ed=0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 4
>>>>
>> 84756%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>>
>> a=XAtNqpU29gz%2FOPgXJdv8Zw%2BJ27If2Rv4kbcnnlck%2BZs%3D&reserved=0
>>>>
>> editor.org%2Fauthors%2Frfc9922.txt&data=05%7C02%7Cmohamed.boucadai
>>>>
>> r%40orange.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40
>>>>
>> bfbc48b9253b6f5d20%7C0%7C0%7C639071376168735519%7CUnknown%7CTWFpbG
>>>>
>> Zsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIs
>>>>
>> IkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=8JvYUX18ELiv4B
>>>> nilRShBHRSDh4LvQ%2F780rXRSdFyig%3D&reserved=0
>>>>
>>>> Diff file of the text:
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644518840%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=yKNI
>> gk2
>>>> 4
>>>> oGVHb3K3Lfe9JwaI3k8b8XVH03oMhA40WBY%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231263214%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=TOYALseECCsIRmeQMEiRl1vQTJDYTcgk8wZxlotAkLs%3D&reserved=
>> 0
>>>> fc-
>> editor.org%2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6
>>>> b
>>>>
>> b4a2ca09408de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7
>> C63
>>>> 9
>>>>
>> 071784644550122%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIl
>> YiO
>>>> i
>>>>
>> IwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0
>> %7C
>>>> %
>>>>
>> 7C%7C&sdata=%2F9E7MBHAuGsaqsfrmDZvG5YlSZU7ndzkM3yFGP6ofIg%3D&reser
>> ved
>>>> =
>>>> 0%2Fauthors%2Frfc9922-
>>>>
>> diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7C5feba92c
>>>>
>> 49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C
>>>>
>> 0%7C639071376168750157%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnR
>>>>
>> ydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyf
>>>>
>> Q%3D%3D%7C0%7C%7C%7C&sdata=5YjQER1h0%2FkD6%2Fw%2FKoSrXjQPdTMceZP4r
>>>> Do76Ytbrd8%3D&reserved=0
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644586483%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=iwK3
>> hOt
>>>> 1
>>>> TTUo7suh7qHrc7ggCIAN22jK3uNtRlPiuDo%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231272477%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=ygM00Di8hBanKjVJqrRLBzIpLfIYvE%2FvUZrlQ%2FXNqiU%3D&reser
>> ved
>>>> =0
>>>> fc-
>> editor.org%2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6
>>>> b
>>>>
>> b4a2ca09408de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7
>> C63
>>>> 9
>>>>
>> 071784644646368%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIl
>> YiO
>>>> i
>>>>
>> IwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0
>> %7C
>>>> %
>>>>
>> 7C%7C&sdata=VARi6N2Uhe3Cw5uu7pZoBMyjIjqEn1spDrCGWwA1%2Fdo%3D&reser
>> ved
>>>> =
>>>> 0%2Fauthors%2Frfc9922-
>>>>
>> rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7C5feba
>>>>
>> 92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0
>>>>
>> %7C0%7C639071376168764528%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGki
>>>>
>> OnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIj
>>>>
>> oyfQ%3D%3D%7C0%7C%7C%7C&sdata=kgYMBWQWSw6C7c9%2FMCdZ5SBBV098QgRAy4
>>>> 8EzDdpxig%3D&reserved=0 (side by side)
>>>>
>>>> Diff of the kramdown:
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644700359%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=vEDt
>> vrk
>>>> l
>>>> kGpXvdTRdJ62yTjb7wdRAPMCyELfNuXiQIA%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231282200%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=d9QOPLNkFATMw%2FwgIM%2B9aRU2V3xE4fWrFIQNH5MJZcE%3D&reser
>> ved
>>>> =0
>>>> fc-
>> editor.org%2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6
>>>> b
>>>>
>> b4a2ca09408de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7
>> C63
>>>> 9
>>>>
>> 071784644746432%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIl
>> YiO
>>>> i
>>>>
>> IwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0
>> %7C
>>>> %
>>>>
>> 7C%7C&sdata=16XneH%2BTTG9za%2FtyXbBZQex1LXANBKCU0lWnWBurrus%3D&res
>> erv
>>>> e
>>>> d=0%2Fauthors%2Frfc9922-md-
>>>>
>> diff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7C5feba92c
>>>>
>> 49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C
>>>>
>> 0%7C639071376168776301%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnR
>>>>
>> ydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyf
>>>>
>> Q%3D%3D%7C0%7C%7C%7C&sdata=JL33T%2B0hBEmAj9g7aNor%2FrlEzCt68%2BPcu
>>>> QM0oCddaTE%3D&reserved=0
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644781936%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=Q16f
>> nsB
>>>> A
>>>> T%2FiCh00gEf54SL2UE0sc0rVrzE%2F49cGQJCM%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231294453%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=YlpX70%2Bej%2F%2FyIo0edwb29j3OZAkahQt8vRRtasRrBAQ%3D&res
>> erv
>>>> ed=0
>>>> fc-
>> editor.org%2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6
>>>> b
>>>>
>> b4a2ca09408de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7
>> C63
>>>> 9
>>>>
>> 071784644823531%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIl
>> YiO
>>>> i
>>>>
>> IwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0
>> %7C
>>>> %
>>>>
>> 7C%7C&sdata=l2jsz%2Fq6%2Fc7HUxRs40dv5aZ%2F%2BADNpn8VxwTQB3QPNAc%3D
>> &re
>>>> s
>>>> erved=0%2Fauthors%2Frfc9922-md-
>>>>
>> rfcdiff.html&data=05%7C02%7Cmohamed.boucadair%40orange.com%7C5feba
>>>>
>> 92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0
>>>>
>> %7C0%7C639071376168787066%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGki
>>>>
>> OnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIj
>>>>
>> oyfQ%3D%3D%7C0%7C%7C%7C&sdata=%2FVqNrULS%2BpiC1AcfePIK6kLTLVOdCt9Y
>>>> bRQzOc6VjCg%3D&reserved=0 (side by side)
>>>>
>>>>
>>>> Tracking progress
>>>> -----------------
>>>>
>>>> The details of the AUTH48 status of your document are here:
>>>>
>>>> https://fra0/
>>>>
>> 1.safelinks.protection.outlook.com%2F%3Furl%3Dhttps%253A%252F%252F
>> &da
>>>> t
>>>>
>> a=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca09408de706
>> 6f1
>>>> 8
>>>>
>> 7%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784644868374%
>> 7CU
>>>> n
>>>>
>> known%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIl
>> AiO
>>>> i
>>>>
>> JXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=xzNU
>> Eqd
>>>> %
>>>> 2BfdgWHXbkkymqw9eG5NunI8EB7Va6d50aOeg%3D&reserved=0
>>>>
>> https://fra01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fw
>> ww.
>>>>
>> r%2F&data=05%7C02%7Cmohamed.boucadair%40orange.com%7Cdc4580070dde4
>> a6d
>>>>
>> f47108de73376621%7C90c7a20af34b40bfbc48b9253b6f5d20%7C0%7C0%7C6390
>> 748
>>>>
>> 79231308950%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOi
>> IwL
>>>>
>> jAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C
>> %7C
>>>>
>> %7C&sdata=KW0dqIOKCUXe48Lyg7Lu5qpypt6zP2L0dMhnowB1ufU%3D&reserved=
>> 0
>>>> fc-
>> %2F&data=05%7C02%7Ckingd%40live.lancs.ac.uk%7Ce8345f58a6bb4a2ca094
>>>> 0
>>>>
>> 8de7066f187%7C9c9bcd11977a4e9ca9a0bc734090164a%7C0%7C0%7C639071784
>> 644
>>>> 9
>>>>
>> 14234%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAu
>> MDA
>>>> w
>>>>
>> MCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&
>> sda
>>>> t
>>>> a=9MxAU2PIXCgRqMJmVSxgj6rj0HdDROkOoXF7yX%2BK88Q%3D&reserved=0
>>>>
>> editor.org%2Fauth48%2Frfc9922&data=05%7C02%7Cmohamed.boucadair%40o
>>>>
>> range.com%7C5feba92c49ca4ad46c0e08de7007d8a4%7C90c7a20af34b40bfbc4
>>>>
>> 8b9253b6f5d20%7C0%7C0%7C639071376168797567%7CUnknown%7CTWFpbGZsb3d
>>>>
>> 8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOI
>>>>
>> joiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&sdata=He5otQ4f6XmZMvb6m5y
>>>> A4DTQ3MtP0vy6btHWsu7dUHY%3D&reserved=0
>>>>
>>>>
>>>> Please let us know if you have any questions.
>>>>
>>>> Thank you for your cooperation,
>>>>
>>>> RFC Editor
>>>
>> __________________________________________________________________
>> ____
>>> ______________________________________
>>> Ce message et ses pieces jointes peuvent contenir des
>> informations confidentielles ou privilegiees et ne doivent donc pas
>> etre diffuses, exploites ou copies sans autorisation. Si vous avez
>> recu ce message par erreur, veuillez le signaler a l'expediteur et le
>> detruire ainsi que les pieces jointes. Les messages electroniques
>> etant susceptibles d'alteration, Orange decline toute responsabilite
>> si ce message a ete altere, deforme ou falsifie. Merci.
>>>
>>> This message and its attachments may contain confidential or
>> privileged information that may be protected by law; they should not
>> be distributed, used or copied without authorisation.
>>> If you have received this email in error, please notify the
>> sender and delete this message and its attachments.
>>> As emails may be altered, Orange is not liable for messages that
>> have been modified, changed or falsified.
>>> Thank you.
>>
>
> ______________________________________________________________________
> ______________________________________
> Ce message et ses pieces jointes peuvent contenir des informations
> confidentielles ou privilegiees et ne doivent donc pas etre diffuses,
> exploites ou copies sans autorisation. Si vous avez recu ce message
> par erreur, veuillez le signaler a l'expediteur et le detruire ainsi que les
> pieces jointes. Les messages electroniques etant susceptibles d'alteration,
> Orange decline toute responsabilite si ce message a ete altere, deforme ou
> falsifie. Merci.
>
> This message and its attachments may contain confidential or
> privileged information that may be protected by law; they should not be
> distributed, used or copied without authorisation.
> If you have received this email in error, please notify the sender and delete
> this message and its attachments.
> As emails may be altered, Orange is not liable for messages that have been
> modified, changed or falsified.
> Thank you.
[email protected]
Description: [email protected]
figure24new.xml
Description: figure24new.xml
figure23new.json
Description: figure23new.json
figure21new.json
Description: figure21new.json
figure20new.json
Description: figure20new.json
figure19new.json
Description: figure19new.json
figure18new.json
Description: figure18new.json
figure17new.json
Description: figure17new.json
-- auth48archive mailing list -- [email protected] To unsubscribe send an email to [email protected]
