<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Loop and Sum within range in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806884#M317992</link>
    <description>&lt;P&gt;The interesting parts of this problem are that the sums of each row are calculated based on succeeding rows and each individual headcount (hc) may be contributing to multiple sums at various levels; for example, the headcount at position 4 contributes to the sums for levels 1, 2 and 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My solution involves reading the dataset twice in the same data step. The first set establishes the current position and level, and the 2nd set determines which rows are summed based on the conditions given by the OP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data have;
infile datalines;
input _obs position level hc expected_hc_sum;
drop _:;
datalines;
1 1 1 1 9
2 2 2 1 3
3 3 3 2 1
4 4 4 1 0
5 5 2 1 4
6 6 3 1 3
7 7 4 1 0
8 8 4 2 0
;
run;

data want;
set have;  * read have;
calc_hc_sum = 0; * initialize calculated HC sum;

* loop through dataset have again independently to sum HC based on 2 conditions:  ;
*   1) current position in 1st set &amp;lt; position in 2nd set.
*   2) current level in 1st set &amp;lt; level in 2nd set.;
do i = 1 to nobs;
    set have (keep=position level hc rename=(position=_pos level=_lev hc=_hc)) 
            nobs=nobs point=i;
    if position &amp;lt; _pos then do;  * only consider obs &amp;gt; curent position;
        if level &amp;lt; _lev then calc_hc_sum + _hc;  * only sum obs &amp;gt; current level;
        else leave;  * exit loop when encounter the same or higher level (smaller number);
    end;
end;
drop _:;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2022 23:54:23 GMT</pubDate>
    <dc:creator>average_joe</dc:creator>
    <dc:date>2022-04-08T23:54:23Z</dc:date>
    <item>
      <title>Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806838#M317965</link>
      <description>&lt;P&gt;Hello SAS community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table like this :&lt;/P&gt;&lt;P&gt;obs&amp;nbsp; &amp;nbsp;position&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HC&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;8&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;8&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate by position the sum of head count under that position based on the hierarchy level seen in the column Level,&amp;nbsp; &amp;nbsp;like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;obs&amp;nbsp; &amp;nbsp;position&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HC&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;HC for position under&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;9&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3 (sum of headcount until reach the same level without crossing lower value of column Level)&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0 (lowest level so 0 position under, but the lowest level could change (could become 5, 6 or more))&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&lt;/P&gt;&lt;P&gt;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;6&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;&lt;P&gt;8&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;8&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried multiple combination of looping and condition but I can't seem to wrap my head around the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me on this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much SAS community&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 19:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806838#M317965</guid>
      <dc:creator>JMart</dc:creator>
      <dc:date>2022-04-08T19:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806842#M317968</link>
      <description>&lt;P&gt;I thought I was following the logic until I got to obs. 6. Why is the HC 1 and not 3?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 20:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806842#M317968</guid>
      <dc:creator>average_joe</dc:creator>
      <dc:date>2022-04-08T20:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806845#M317970</link>
      <description>you are right it should be 3&lt;BR /&gt;</description>
      <pubDate>Fri, 08 Apr 2022 20:34:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806845#M317970</guid>
      <dc:creator>JMart</dc:creator>
      <dc:date>2022-04-08T20:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806847#M317972</link>
      <description>This is the correct simulation (an error occur in the previous one)&lt;BR /&gt;&lt;BR /&gt;I have a table like this :&lt;BR /&gt;&lt;BR /&gt;obs position Level HC&lt;BR /&gt;&lt;BR /&gt;1 1 1 1&lt;BR /&gt;&lt;BR /&gt;2 2 2 1&lt;BR /&gt;&lt;BR /&gt;3 3 3 2&lt;BR /&gt;&lt;BR /&gt;4 4 4 1&lt;BR /&gt;&lt;BR /&gt;5 5 2 1&lt;BR /&gt;&lt;BR /&gt;6 6 3 1&lt;BR /&gt;&lt;BR /&gt;7 7 4 1&lt;BR /&gt;&lt;BR /&gt;8 8 4 2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want to calculate by position the sum of head count under that position based on the hierarchy level seen in the column Level, like this :&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;obs position Level HC HC for position under&lt;BR /&gt;&lt;BR /&gt;1 1 1 1 9&lt;BR /&gt;&lt;BR /&gt;2 2 2 1 3 (sum of headcount until reach the same level without crossing lower value of column Level)&lt;BR /&gt;&lt;BR /&gt;3 3 3 2 1&lt;BR /&gt;&lt;BR /&gt;4 4 4 1 0 (lowest level so 0 position under, but the lowest level could change (could become 5, 6 or more))&lt;BR /&gt;&lt;BR /&gt;5 5 2 1 4&lt;BR /&gt;&lt;BR /&gt;6 6 3 1 3&lt;BR /&gt;&lt;BR /&gt;7 7 4 1 0&lt;BR /&gt;&lt;BR /&gt;8 8 4 2 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have tried multiple combination of looping and condition but I can't seem to wrap my head around the solution.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Can someone help me on this?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you so much SAS community</description>
      <pubDate>Fri, 08 Apr 2022 20:37:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806847#M317972</guid>
      <dc:creator>JMart</dc:creator>
      <dc:date>2022-04-08T20:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806884#M317992</link>
      <description>&lt;P&gt;The interesting parts of this problem are that the sums of each row are calculated based on succeeding rows and each individual headcount (hc) may be contributing to multiple sums at various levels; for example, the headcount at position 4 contributes to the sums for levels 1, 2 and 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My solution involves reading the dataset twice in the same data step. The first set establishes the current position and level, and the 2nd set determines which rows are summed based on the conditions given by the OP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data have;
infile datalines;
input _obs position level hc expected_hc_sum;
drop _:;
datalines;
1 1 1 1 9
2 2 2 1 3
3 3 3 2 1
4 4 4 1 0
5 5 2 1 4
6 6 3 1 3
7 7 4 1 0
8 8 4 2 0
;
run;

data want;
set have;  * read have;
calc_hc_sum = 0; * initialize calculated HC sum;

* loop through dataset have again independently to sum HC based on 2 conditions:  ;
*   1) current position in 1st set &amp;lt; position in 2nd set.
*   2) current level in 1st set &amp;lt; level in 2nd set.;
do i = 1 to nobs;
    set have (keep=position level hc rename=(position=_pos level=_lev hc=_hc)) 
            nobs=nobs point=i;
    if position &amp;lt; _pos then do;  * only consider obs &amp;gt; curent position;
        if level &amp;lt; _lev then calc_hc_sum + _hc;  * only sum obs &amp;gt; current level;
        else leave;  * exit loop when encounter the same or higher level (smaller number);
    end;
end;
drop _:;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 23:54:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806884#M317992</guid>
      <dc:creator>average_joe</dc:creator>
      <dc:date>2022-04-08T23:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: Loop and Sum within range</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806921#M318016</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile datalines;
input _obs position level hc ;
drop _:;
datalines;
1 1 1 1 9
2 2 2 1 3
3 3 3 2 1
4 4 4 1 0
5 5 2 1 4
6 6 3 1 3
7 7 4 1 0
8 8 4 2 0
;
run;

data want;
if _n_=1 then do;
 if 0 then set have(rename=(level=_level hc=_hc));
 declare hash h(dataset:'have(rename=(level=_level hc=_hc))',ordered:'yes');
 declare hiter hi('h');
 h.definekey('position');
 h.definedata('_level','_hc');
 h.definedone();
end;
 set have;
want=0;
rc=hi.setcur(key:position+1);
do while(rc=0);
 if level=_level then leave;
 if level&amp;gt;_level then do;rc=hi.next();continue;end;
 want+_hc; 
 rc=hi.next();
end;
drop rc _:;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 09 Apr 2022 10:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Loop-and-Sum-within-range/m-p/806921#M318016</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-04-09T10:55:12Z</dc:date>
    </item>
  </channel>
</rss>

