<?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: Re : how to modified arc's StartPoint or EndPoint in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413503#M33107</link>
    <description>&lt;P&gt;exactly !&lt;BR /&gt;So, I have my starting point and my end point, I want there to be the connection in the shape of an arc of a circle.&lt;BR /&gt;can the 3rd value be random or something else?&lt;/P&gt;&lt;P&gt;Because I'm trying to develop but for now it's complicated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;					Point3d A = new Point3d(1,1,0)
                    Point3d B = new Point3d(11,11,0)
                    Point3d C = new Point3d(12/2,12/2,0);
                    BlockTable acBlkTbl;
                    acBlkTbl = tr.GetObject(db.BlockTableId,
                                                 OpenMode.ForRead) as BlockTable;

                    // Open the Block table record Model space for write
                    BlockTableRecord acBlkTblRec;
                    acBlkTblRec = tr.GetObject(acBlkTbl[BlockTableRecord.ModelSpace], OpenMode.ForWrite) as BlockTableRecord;

					Arc arc = new Arc() // i want something look like this --&amp;gt;&amp;gt;&amp;gt; Arc(start point , end point,direction or angle )
					
					arc.start = A; // i try this too but doesn't work 
					arc.end = B

					acBlkTblRec.AppendEntity(arc);
                    tr.AddNewlyCreatedDBObject(arc, true);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or my question is :&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can edit the EndPoint and the Start Point too ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jun 2021 07:31:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-06-23T07:31:24Z</dc:date>
    <item>
      <title>how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815230#M33101</link>
      <description>&lt;P&gt;Arc's StartPoint or EndPoint is read only.How to modify them?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 03:21:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815230#M33101</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T03:21:10Z</dc:date>
    </item>
    <item>
      <title>Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815340#M33102</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to modify an arc start point, you have to specify antother data than the arc end point to defin a new arc (e.g. start or end angle, another point on the arc...).&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 06:46:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815340#M33102</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-01-19T06:46:31Z</dc:date>
    </item>
    <item>
      <title>Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815345#M33103</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tet.jpg" style="width: 222px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/312694i72D3380702CA87C9/image-size/large?v=v2&amp;amp;px=999" role="button" title="tet.jpg" alt="tet.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;as above pic,we can draw the endpoint or startpoint modify the arc in acad.I found the arc's radiu had changed.How to mimic that?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 06:53:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815345#M33103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-19T06:53:21Z</dc:date>
    </item>
    <item>
      <title>Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815392#M33104</link>
      <description>&lt;P&gt;When editing the arc end point or start point using the grips, AutoCAD keeps the arc middle point as "point on arc" so tha the new arc is defined with 3 points.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The CircularArc3d geometry object which have a constructor which takes 3 points as arguments can be use for this task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        public void EditArcEndPoint(Arc arc, Point3d endPoint)
        {
            Point3d midPoint = arc.GetPointAtParameter((arc.StartParam + arc.EndParam) / 2.0);
            CircularArc3d circArc = new CircularArc3d(arc.StartPoint, midPoint, endPoint);
            var angle = Vector3d.XAxis.GetAngleTo(arc.StartPoint - circArc.Center, circArc.Normal);
            if (!arc.IsWriteEnabled)
                arc.UpgradeOpen();
            arc.Center = circArc.Center;
            arc.Normal = circArc.Normal;
            arc.Radius = circArc.Radius;
            arc.StartAngle = circArc.StartAngle + angle;
            arc.EndAngle = circArc.EndAngle + angle;
        }&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Jan 2017 07:39:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/6815392#M33104</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-01-19T07:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10411528#M33105</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two point3d .&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like the arc to go from point A to point B,&lt;BR /&gt;but with the ARC method we cannot generate an ARC from point A to point B, it asks us for the center and angles, which I cannot know.&lt;/P&gt;&lt;P&gt;What I want is easy to do on Autocad, we link the two points and we choose a 3rd point, or a direction, or an angle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking of generating a function with&lt;BR /&gt;ARC (startpoint, endpoint) but I'm failing for now.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2021-06-22 172727.png" style="width: 529px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933166i305372CFE0D016DF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2021-06-22 172727.png" alt="Capture d’écran 2021-06-22 172727.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try with this code but i'm failing now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;					Point3d A = new Point3d(1,1,0)
                    Point3d B = new Point3d(11,11,0)
                    Point3d C = new Point3d(12/2,12/2,0);
					
                    BlockTable acBlkTbl;
                    acBlkTbl = tr.GetObject(db.BlockTableId,OpenMode.ForRead) as BlockTable;
                    // Open the Block table record Model space for write
                    BlockTableRecord acBlkTblRec;
                    acBlkTblRec = tr.GetObject(acBlkTbl[BlockTableRecord.ModelSpace], OpenMode.ForWrite) as BlockTableRecord;
					 Arc arc = new Arc();
                    Point3d midPoint = arc.GetPointAtParameter((arc.StartParam + arc.EndParam) / 2.0);
                    CircularArc3d circArc = new CircularArc3d(A, C, B);
                    var angle = Vector3d.XAxis.GetAngleTo(arc.StartPoint - circArc.Center, circArc.Normal);
                    if (!arc.IsWriteEnabled)
                        arc.UpgradeOpen();
                    arc.Center = circArc.Center;
                    arc.Normal = circArc.Normal;
                    arc.Radius = circArc.Radius;
                    arc.StartAngle = circArc.StartAngle + angle;
                    arc.EndAngle = circArc.EndAngle + angle;

                    acBlkTblRec.AppendEntity(arc);
                    tr.AddNewlyCreatedDBObject(arc, true);
                }
                // Save the new line to the database
                tr.Commit();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 15:39:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10411528#M33105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-22T15:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10411658#M33106</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Two points aren't enough to define an Arc. You need to provide at least one other data, a third point on the arc, the center of the arc, the arc angle, the start tangent, ...&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jun 2021 16:27:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10411658#M33106</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-06-22T16:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413503#M33107</link>
      <description>&lt;P&gt;exactly !&lt;BR /&gt;So, I have my starting point and my end point, I want there to be the connection in the shape of an arc of a circle.&lt;BR /&gt;can the 3rd value be random or something else?&lt;/P&gt;&lt;P&gt;Because I'm trying to develop but for now it's complicated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;					Point3d A = new Point3d(1,1,0)
                    Point3d B = new Point3d(11,11,0)
                    Point3d C = new Point3d(12/2,12/2,0);
                    BlockTable acBlkTbl;
                    acBlkTbl = tr.GetObject(db.BlockTableId,
                                                 OpenMode.ForRead) as BlockTable;

                    // Open the Block table record Model space for write
                    BlockTableRecord acBlkTblRec;
                    acBlkTblRec = tr.GetObject(acBlkTbl[BlockTableRecord.ModelSpace], OpenMode.ForWrite) as BlockTableRecord;

					Arc arc = new Arc() // i want something look like this --&amp;gt;&amp;gt;&amp;gt; Arc(start point , end point,direction or angle )
					
					arc.start = A; // i try this too but doesn't work 
					arc.end = B

					acBlkTblRec.AppendEntity(arc);
                    tr.AddNewlyCreatedDBObject(arc, true);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or my question is :&amp;nbsp;&lt;/P&gt;&lt;P&gt;We can edit the EndPoint and the Start Point too ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 07:31:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413503#M33107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-23T07:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413587#M33108</link>
      <description>&lt;P&gt;Sometimes I'm not very clear and I apologize&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I managed to do that&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2021-06-23 094013.png" style="width: 803px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933423i878EE23DF79DCF62/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2021-06-23 094013.png" alt="Capture d’écran 2021-06-23 094013.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and that's what I wish I had &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2021-06-23 094358.png" style="width: 451px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933424i31EAB9F5BC7F8ED2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2021-06-23 094358.png" alt="Capture d’écran 2021-06-23 094358.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my code &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Point3d A = new Point3d(1,1,0)
                    Point3d B = new Point3d(11,11,0)
                    Point3d C = new Point3d(12/2,12/2,0)
                    BlockTable acBlkTbl;
                    acBlkTbl = tr.GetObject(db.BlockTableId,
                                                 OpenMode.ForRead) as BlockTable;
                    BlockTableRecord acBlkTblRec;
                    acBlkTblRec = tr.GetObject(acBlkTbl[BlockTableRecord.ModelSpace], OpenMode.ForWrite) as BlockTableRecord;
                    Arc arc = new Arc();

                    EditArcEndPoint(arc, B);
                    EditArcEndPoint(arc, A);
                    acBlkTblRec.AppendEntity(arc);
                    tr.AddNewlyCreatedDBObject(arc, true);
                }
                tr.Commit();
            }
    }
        public static void EditArcEndPoint(Arc arc, Point3d endPoint)
        {
            Point3d midPoint = arc.GetPointAtParameter((arc.StartParam + arc.EndParam) / 2.0);
            CircularArc3d circArc = new CircularArc3d(arc.StartPoint, midPoint, endPoint);
            var angle = Vector3d.XAxis.GetAngleTo(arc.StartPoint - circArc.Center, circArc.Normal);
            if (!arc.IsWriteEnabled)
                arc.UpgradeOpen();
            arc.Center = circArc.Center;
            arc.Normal = circArc.Normal;
            arc.Radius = circArc.Radius;
            arc.StartAngle = circArc.StartAngle + angle;
            arc.EndAngle = circArc.EndAngle + angle;
        }
        public static void EditArcStartPoint(Arc arc, Point3d Start)
        {
            Point3d midPoint = arc.GetPointAtParameter((arc.StartParam + arc.EndParam) / 2.0);
            CircularArc3d circArc = new CircularArc3d(Start, midPoint, arc.EndPoint);
            var angle = Vector3d.XAxis.GetAngleTo(Start - circArc.Center, circArc.Normal);
            if (!arc.IsWriteEnabled)
                arc.UpgradeOpen();
            arc.Center = circArc.Center;
            arc.Normal = circArc.Normal;
            arc.Radius = circArc.Radius;
            arc.StartAngle = circArc.StartAngle + angle;
            arc.EndAngle = circArc.EndAngle + angle;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Thanks a lot&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 07:51:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413587#M33108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-23T07:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413697#M33109</link>
      <description>&lt;P&gt;I found the answer!&lt;/P&gt;&lt;P&gt;You answered the question on another forum &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture d’écran 2021-06-23 103526.png" style="width: 940px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/933447i65E7E055028F3E0C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture d’écran 2021-06-23 103526.png" alt="Capture d’écran 2021-06-23 103526.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;You are the best &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 08:36:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10413697#M33109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-06-23T08:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10414443#M33110</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp; a écrit&amp;nbsp;:&lt;BR /&gt;
&lt;P&gt;I found the answer!&lt;/P&gt;
&lt;P&gt;You answered the question on another forum &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This is not exactly the same question, The topic was: "&lt;A href="http://www.theswamp.org/index.php?topic=40382.msg456843#msg456843" target="_blank" rel="noopener"&gt;Create arc through &lt;STRONG&gt;3&lt;/STRONG&gt; points&lt;/A&gt;".&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 13:26:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10414443#M33110</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-06-23T13:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re : how to modified arc's StartPoint or EndPoint</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10443865#M33111</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I managed to draw an arc of a circle between two consecutive points, but the arc of a circle is too large because the position of the center of the circle is located between the two points, but I have not found a solution to have a less imposing arc of a circle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;look at&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/net/draw-an-arc-of-a-circle-not-very-wide-from-a-starting-point-to/td-p/10443808" target="_blank"&gt;https://forums.autodesk.com/t5/net/draw-an-arc-of-a-circle-not-very-wide-from-a-starting-point-to/td-p/10443808&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to see what i want to explain please &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 10:31:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-modified-arc-s-startpoint-or-endpoint/m-p/10443865#M33111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-05T10:31:35Z</dc:date>
    </item>
  </channel>
</rss>

