<?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: MatchProp for Layers in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10385137#M59477</link>
    <description>&lt;P&gt;You could try this too:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun foo (l1 l2 / a b)
  (if (and (setq a (tblobjname "layer" l1)) (setq b (tblobjname "layer" l2)))
    (entmod
      (append
	(entget b)
	(vl-remove-if-not '(lambda (x) (vl-position (car x) '(6 62 70 290 347 370 390 420 430))) (entget a))
      )
    )
  )
)
(foo "0" "1")
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 12 Jun 2021 14:59:16 GMT</pubDate>
    <dc:creator>ronjonp</dc:creator>
    <dc:date>2021-06-12T14:59:16Z</dc:date>
    <item>
      <title>MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10383635#M59472</link>
      <description>&lt;P&gt;I think this would be a simple routine. I have two layers. Layer 1 with its properties and Layer2 with its properties. I want to push the Layer 1 Properties to Layer 2, in the same way as we would do a matchprop for objects, so in the end the Layer2 has identical properties to Layer1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know I could create a Layer 3 from Layer1 and then merge Layer2 in Layer 3 and rename Layer3 to Layer 2. But that would take a lot....&lt;/P&gt;&lt;P&gt;Or I could select both in Layer Manager and then one by one match each property...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it would act in a way like LayerMerge... Select the source layer from a list, then copy its properties, select the target layer(s) from a list and paste the source layer properties to the target layers to be identical.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 20:07:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10383635#M59472</guid>
      <dc:creator>istvan_voiculescu</dc:creator>
      <dc:date>2021-06-11T20:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384090#M59473</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1828223"&gt;@istvan_voiculescu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I think this would be a simple routine. I have two layers. Layer 1 with its properties and Layer2 with its properties...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Try &lt;A title="Copy layer properties from one layer to another by _gile" href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/copy-layer-properties-from-one-layer-to-another/m-p/1983149#M240539" target="_blank" rel="noopener"&gt;this&lt;/A&gt;&amp;nbsp;,&lt;/FONT&gt; &lt;FONT size="3"&gt;the option of&amp;nbsp; selecting objects as source and target for the layer names.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;If that doesnt work for you then we will add the listbox as requested.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 01:11:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384090#M59473</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-06-12T01:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384173#M59474</link>
      <description>&lt;P&gt;It does what I want and this is great, but requires both layers to be selected by objects. I could dive in modifying the code and it might take me a while, but can this code be slightly modified to do the following:&lt;BR /&gt;1. Select the target layer by selecting one object in the drawing.&lt;BR /&gt;2. Display target layer in a dialog box. or list it in the command line.(So we know what layer is selected)&lt;BR /&gt;3. Provide a command line where we can type a layer or list box of the layers in the CAD file to select from for the source data to be matched.&lt;BR /&gt;4. Apply the change.&lt;BR /&gt;&lt;BR /&gt;The idea behind this type of routine is the following. We have CAD files that need to be kept with original layers, but those layers need to be modified to match our standards. To match our standards and still keep the original standards for printing we need to change their properties to match our standards. Then at the end the CAD file would have two layer states. The original as the file was provided and the modified for our purposes... We could do those one by one manually, or import our layers temporary and match the layers to our layers properties for the same type of data.&lt;BR /&gt;Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 02:23:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384173#M59474</guid>
      <dc:creator>istvan_voiculescu</dc:creator>
      <dc:date>2021-06-12T02:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384230#M59475</link>
      <description>&lt;P&gt;(defun c:match-layer-prop1 (/ source target)&lt;BR /&gt;(and&lt;BR /&gt;(setq target (car (entsel "\nSelect an object on target layer: ")))&lt;BR /&gt;(setq target&lt;BR /&gt;(entget (tblobjname "layer" (cdr (assoc 8 (entget target))))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(princ&lt;BR /&gt;(strcat&lt;BR /&gt;"\nSelected Layer is: "&lt;BR /&gt;(cdr (assoc 2 target))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(setq source (getstring 1 "\nWhat layer should be matched to: "))&lt;BR /&gt;(setq source&lt;BR /&gt;(entget (tblobjname "layer" (cdr (assoc 8 (entget source))))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(entmod&lt;BR /&gt;(append (vl-remove-if&lt;BR /&gt;'(lambda (x) (member (car x) '(70 62 6 290 370 390 347)))&lt;BR /&gt;target&lt;BR /&gt;)&lt;BR /&gt;(vl-remove-if-not&lt;BR /&gt;'(lambda (x) (member (car x) '(70 62 6 290 370 390 347)))&lt;BR /&gt;source&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(entupd (cdr (assoc -1 target)))&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It fails at the selecting the source section where I get an lentityp error... What am I missing?&lt;/P&gt;&lt;P&gt;Also, I cannot use the alert command, just the princ, since it seems when using alert it just skips...&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 03:15:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384230#M59475</guid>
      <dc:creator>istvan_voiculescu</dc:creator>
      <dc:date>2021-06-12T03:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384265#M59476</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1828223"&gt;@istvan_voiculescu&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;1. Select the target layer by selecting one object in the drawing.&lt;BR /&gt;2. Display target layer in a dialog box. or list it in the command line.(So we know what layer is selected)&lt;BR /&gt;3. Provide a command line where we can type a layer or list box of the layers in the CAD file to select from for the source data to be matched.&lt;BR /&gt;4. Apply the change.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;;; List Box  -  Lee Mac
;; Displays a DCL list box allowing the user to make a selection from the supplied data.
;; msg - [str] Dialog label
;; lst - [lst] List of strings to display
;; bit - [int] 1=allow multiple; 2=return indexes
;; Returns: [lst] List of selected items/indexes, else nil

(defun LM:listbox ( msg lst bit / dch des tmp rtn )
    (cond
        (   (not
                (and
                    (setq tmp (vl-filename-mktemp nil nil ".dcl"))
                    (setq des (open tmp "w"))
                    (write-line
                        (strcat "listbox:dialog{label=\"" msg "\";spacer;:list_box{key=\"list\";multiple_select="
                            (if (= 1 (logand 1 bit)) "true" "false") ";width=50;height=15;}spacer;ok_cancel;}"
                        )
                        des
                    )
                    (not (close des))
                    (&amp;lt; 0 (setq dch (load_dialog tmp)))
                    (new_dialog "listbox" dch)
                )
            )
            (prompt "\nError Loading List Box Dialog.")
        )
        (   t     
            (start_list "list")
            (foreach itm lst (add_list itm))
            (end_list)
            (setq rtn (set_tile "list" "0"))
            (action_tile "list" "(setq rtn $value)")
            (setq rtn
                (if (= 1 (start_dialog))
                    (if (= 2 (logand 2 bit))
                        (read (strcat "(" rtn ")"))
                        (mapcar '(lambda ( x ) (nth x lst)) (read (strcat "(" rtn ")")))
                    )
                )
            )
        )
    )
    (if (&amp;lt; 0 dch)
        (unload_dialog dch)
    )
    (if (and tmp (setq tmp (findfile tmp)))
        (vl-file-delete tmp)
    )
    rtn
)


(defun c:match-layer-prop (/ source target)
;;	_gile | pbe   2021	;;
  (defun _Layerlist (cs / a ln ls)
    (while (setq a (tblnext "Layer" (null a)))
	(cond
	  ((or (vl-string-search "$0$" (setq ln (cdr (assoc 2 a))))
	       (member ln (list "0" "Defpoints" cs))))
	  ((setq ls (cons ln ls)))))
    ls
    )
  (if
    (and
    	(setq target (car (entsel "\nSelect an object on target layer: ")))
	(setq target (entget (tblobjname "layer"
			       (setq lnm (cdr (assoc 8 (entget target)))))))
	(setq layList (_Layerlist lnm))
	(setq source (car (LM:listbox (strcat "Select layer to matched with " lnm ) layList 0)))
	(setq source
		   (entget (tblobjname "layer" source)
		   )
	    )
	)
	(progn
	    (entmod
	      (append (vl-remove-if
			'(lambda (x) (member (car x) '(70 62 6 290 370 390 347)))
			target
		      )
		      (vl-remove-if-not
			'(lambda (x) (member (car x) '(70 62 6 290 370 390 347)))
			source
		      )
	      )
	    )
	    (entupd (cdr (assoc -1 target)))
	  )
    )
  (princ)
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Command:&amp;nbsp;MATCH-LAYER-PROP&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Select an object on target layer:&lt;/FONT&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="pbejse_0-1623469206711.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/929577i8FDD703E4A90B4F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pbejse_0-1623469206711.png" alt="pbejse_0-1623469206711.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1828223"&gt;@istvan_voiculescu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;It fails at the selecting the source section where I get an lentityp error... What am I missing?,,&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;This will fail&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;...
(setq source (getstring 1 "\nWhat layer should be matched to: "))
    (setq source
	   (entget (tblobjname "layer" (cdr (assoc 8 (entget source))))
	   )
    )
...
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;As source is a string as a result from &lt;EM&gt;getstring&lt;/EM&gt; and &lt;EM&gt;entget&lt;/EM&gt;&amp;nbsp;requires an ename to work&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;...    
(setq source (getstring 1 "\nWhat layer should be matched to: "))
    (setq source
	   (entget (tblobjname "layer" source)
	   )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 03:51:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10384265#M59476</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-06-12T03:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10385137#M59477</link>
      <description>&lt;P&gt;You could try this too:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun foo (l1 l2 / a b)
  (if (and (setq a (tblobjname "layer" l1)) (setq b (tblobjname "layer" l2)))
    (entmod
      (append
	(entget b)
	(vl-remove-if-not '(lambda (x) (vl-position (car x) '(6 62 70 290 347 370 390 420 430))) (entget a))
      )
    )
  )
)
(foo "0" "1")
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 14:59:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10385137#M59477</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2021-06-12T14:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10385789#M59478</link>
      <description>&lt;P&gt;Thanks a lot. That is what I was looking for. I could have used also the solution without the listbox, since I don't mind typing, but this makes it so much easier... I am not an expert at LISP, but can move code around and apply some logic to it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Most of the time I get lost in parentheses &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hopefully others find this helpful especially for matching layer data to standards while keeping original layer names...&lt;/P&gt;&lt;P&gt;The idea is that we have the file we need to keep from the consultant as is, but modify its layer properties for our plans. So once those layers are defined in the CAD file, then if the consultant sends a new version, we just remove the original content from the CAD file and paste the data from the new file in. Easy swap while maintaining all the work done at the beginning &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; And Layer States take care of everything &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jun 2021 00:12:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10385789#M59478</guid>
      <dc:creator>istvan_voiculescu</dc:creator>
      <dc:date>2021-06-13T00:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10386009#M59479</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1828223"&gt;@istvan_voiculescu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks a lot. That is what I was looking for.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Good to know it works for you.&amp;nbsp; You may want to look into&amp;nbsp;&lt;EM&gt;_&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2016/ENU/AutoCAD-Core/files/GUID-597F7140-6BB9-444C-8F14-5E5655556B69-htm.html" target="_blank" rel="noopener"&gt;laytrans &amp;nbsp;&lt;/A&gt;&lt;/EM&gt;to deal with layer standards&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Cheers&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jun 2021 04:37:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10386009#M59479</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-06-13T04:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10399322#M59480</link>
      <description>&lt;P&gt;Can the routine be updated to sort the layers in the listbox alphabetically? It seems that the layers are listed in the order they are created in the CAD file... Otherwise it works great...&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 19:58:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10399322#M59480</guid>
      <dc:creator>istvan_voiculescu</dc:creator>
      <dc:date>2021-06-17T19:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: MatchProp for Layers</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10399603#M59481</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1828223"&gt;@istvan_voiculescu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Can the routine be updated to sort the layers in the listbox alphabetically? It seems that the layers are listed in the order they are created in the CAD file... Otherwise it works great...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Yuuppppppp.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Add the line in&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt; blue&lt;/STRONG&gt;&lt;/FONT&gt; color&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT color="#808080"&gt;...&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#808080"&gt;	(setq layList (_Layerlist lnm))&lt;/FONT&gt;
	&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;(setq layList (vl-sort layList '&amp;lt;))&lt;/STRONG&gt;&lt;/FONT&gt;
&lt;FONT color="#808080"&gt;	(setq source (car (LM:listbox (strcat "Select layer to matched with " lnm ) layList 0)))&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#808080"&gt;...&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;HTH&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jun 2021 21:59:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/matchprop-for-layers/m-p/10399603#M59481</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2021-06-17T21:59:13Z</dc:date>
    </item>
  </channel>
</rss>

