<?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: Reading and parsing Google Calendar ics file in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209718#M8425</link>
    <description>Hi Alessandro 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;The global variable (Integer)globalMap.get("tFileInputFullRow_1_NB_LINE") can to be helpful but in first time I must have the content of the row.&lt;BR /&gt;What is the global variable to get the row string? How can I find documentation about this?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Not all of the components documents its global variables right now, we had reported this request to our Doc team, and we will explain the global variable related to the component one by one in future versions of document. 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Then if I my row start (es.) with SUMMARY: or DTSTART: I take the value after ":" and I save the value in a structure with a row for each event with the field required.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;tFileInputFullRow is the best component to read the entire row one by one from the source file, and then you can use a tFilterRow to tMap to filter rows that starts from SUMMARY: or DTSTART:, then extract the value after ":" on tJavaRow, for example: 
&lt;BR /&gt; 
&lt;PRE&gt;output_row.SUMMARY=input_row.line.substring(input_row.line.indexOf(":")+1);&lt;/PRE&gt; 
&lt;BR /&gt;For more details, please see my screenshots. (In this case, I use a tFixedFlowInput to generate the source data provided by you) 
&lt;BR /&gt;Hope this can give you tip! 
&lt;BR /&gt;Shong 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrD.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130783i9247E244A3B85BAB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrD.png" alt="0683p000009MCrD.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCca.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157512i9C457F0E26549944/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCca.png" alt="0683p000009MCca.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144649iD9168B0C1723201D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrI.png" alt="0683p000009MCrI.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157034i187D27981A4E2631/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrN.png" alt="0683p000009MCrN.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrS.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142149iDD0B8458B64E98E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrS.png" alt="0683p000009MCrS.png" /&gt;&lt;/span&gt;</description>
    <pubDate>Fri, 21 Feb 2014 10:25:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-21T10:25:33Z</dc:date>
    <item>
      <title>Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209708#M8415</link>
      <description>Hi forum 
&lt;BR /&gt;In another post I asked about to query Google Calendar item 
&lt;BR /&gt; 
&lt;A href="http://www.talendforge.org/forum/viewtopic.php?pid=126354#p126354" target="_blank" rel="nofollow noopener noreferrer"&gt;url=http://www.talendforge.org/forum/viewtopic.php?pid=126354#p126354&lt;/A&gt; 
&lt;BR /&gt;I hope that the developer find a way to do this. 
&lt;BR /&gt;Meantime I try another method to read Google Calendar item: in Google there is the possibility to export the calendar in a structured text file with ics extension that it's something like this: 
&lt;BR /&gt; 
&lt;PRE&gt;BEGIN:VEVENT&lt;BR /&gt;DTSTART:20140107T090000Z&lt;BR /&gt;DTEND:20140107T120000Z&lt;BR /&gt;DTSTAMP:20140129T164854Z&lt;BR /&gt;UID:@google.com&lt;BR /&gt;CREATED:20140108T080811Z&lt;BR /&gt;DESCRIPTION:Descriprion 1° event&lt;BR /&gt;LAST-MODIFIED:20140108T080831Z&lt;BR /&gt;LOCATION:&lt;BR /&gt;SEQUENCE:1&lt;BR /&gt;STATUS:CONFIRMED&lt;BR /&gt;SUMMARY:Object 1° event&lt;BR /&gt;TRANSP:OPAQUE&lt;BR /&gt;END:VEVENT&lt;BR /&gt;BEGIN:VEVENT&lt;BR /&gt;DTSTART:20131224T073000Z&lt;BR /&gt;DTEND:20131224T080000Z&lt;BR /&gt;DTSTAMP:20140129T164854Z&lt;BR /&gt;UID:@google.com&lt;BR /&gt;CREATED:20131223T165249Z&lt;BR /&gt;DESCRIPTION:Descriprion 2° event&lt;BR /&gt;LAST-MODIFIED:20140107T075355Z&lt;BR /&gt;LOCATION:&lt;BR /&gt;SEQUENCE:0&lt;BR /&gt;STATUS:CONFIRMED&lt;BR /&gt;SUMMARY:Object 2° event&lt;BR /&gt;TRANSP:OPAQUE&lt;BR /&gt;END:VEVENT&lt;BR /&gt;.....&lt;/PRE&gt; 
&lt;BR /&gt;It's a sequential file where every event is distinct between the sections 
&lt;BR /&gt; 
&lt;PRE&gt;BEGIN:VEVENT&lt;BR /&gt;&lt;BR /&gt;END:VEVENT&lt;/PRE&gt; 
&lt;BR /&gt;Isn?t guaranteed that each section have the same number of rows and the same sequence. 
&lt;BR /&gt;Therefore it would be necessary generate a cycle that it identify the begin and the end of the section to create new DB row. 
&lt;BR /&gt;Then on have to identify the data row by row to assign to a corresponding field. 
&lt;BR /&gt;Is there a Talend component that it running this big job? 
&lt;BR /&gt;Or what components could I use to develop this? 
&lt;BR /&gt;Regards 
&lt;BR /&gt;Alessandro</description>
      <pubDate>Sun, 02 Feb 2014 16:32:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209708#M8415</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-02T16:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209709#M8416</link>
      <description>To your question, no this is not guaranteed. If a event has same attributes unlike others than the entries can differ. 
&lt;BR /&gt;Currently there is no component dedicated to this format. I would do this job with a Java class parsing this file line by line and accumulate the Events in objects. It is very easy to do. 
&lt;BR /&gt;Do you think, this task will be done often? I suggest creating a JIRA feature request for a new component to handle ICS files.</description>
      <pubDate>Sun, 02 Feb 2014 23:01:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209709#M8416</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-02T23:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209710#M8417</link>
      <description>Hi Jlolling thanks for your replay.
&lt;BR /&gt;I had already begun to develop Java code for this function.
&lt;BR /&gt;I'm using the component tFileInputFullRow to read my .ics file then with an "Iterate" collector I pass to a tJava component.
&lt;BR /&gt;Is what the name of the variable to use to get the row value from tFileInputFullRow?
&lt;BR /&gt;I suppose something like this
&lt;BR /&gt;
&lt;PRE&gt;((String)globalMap.get("tFileInputFullRow_1_xxxx"));&lt;/PRE&gt;
&lt;BR /&gt;Regard</description>
      <pubDate>Mon, 03 Feb 2014 13:56:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209710#M8417</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-03T13:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209711#M8418</link>
      <description>Hi forum 
&lt;BR /&gt;can anyone tell me the property to use to extract the value of the line? 
&lt;BR /&gt;The work that I am developing is as shown in the image but I do not know the right parameter ("tFileInputFullRow_1_line" is wrong!) 
&lt;BR /&gt;Thanks to everyone. 
&lt;BR /&gt;Alessandro 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Wed, 05 Feb 2014 20:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209711#M8418</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-05T20:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209712#M8419</link>
      <description>Up..</description>
      <pubDate>Fri, 07 Feb 2014 18:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209712#M8419</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-07T18:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209713#M8420</link>
      <description>Hi forum
&lt;BR /&gt;no suggestions for my issue?
&lt;BR /&gt;In another job where I'm using tFileList I received the suggestion to use the property tFileList_1_CURRENT_FILE, tFileList_1_CURRENT_FILEDIRECTORY, tFileList_1_CURRENT_FILEPATH which have been very useful for the development.
&lt;BR /&gt;Using tFileInputFullRow I think there are some similar properties but I could not find documentation on this.
&lt;BR /&gt;Help me please.
&lt;BR /&gt;Thanks to everyone.
&lt;BR /&gt;Alessandro</description>
      <pubDate>Thu, 13 Feb 2014 07:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209713#M8420</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-13T07:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209714#M8421</link>
      <description>Hi Alessandro 
&lt;BR /&gt;The global variable (Integer)globalMap.get("tFileInputFullRow_1_NB_LINE") on tFileInputFullRow_1 is used to count the total number of lines are read from the file. I don't understand why you are using the iterate link. What data do you want to extract from the file? or you just need to count the number of events (that starts from BEGIN:VEVENT and ends with END:VEVENT)? 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 13 Feb 2014 07:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209714#M8421</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-13T07:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209715#M8422</link>
      <description>Hi Shong
&lt;BR /&gt;Thanks for your attention.
&lt;BR /&gt;With tFileInputFullRow I would like to read line by line the .ics file, fot this I think to use the iterate link.
&lt;BR /&gt;In a tJava component I would like to have the contents of the line and to parse it to identify the kind of row.
&lt;BR /&gt;Then if I my row start (es.) with SUMMARY: or DTSTART: I take the value after ":" and I save the value in a structure with a row for each event with the field required.
&lt;BR /&gt;The global variable (Integer)globalMap.get("tFileInputFullRow_1_NB_LINE") can to be helpful but in first time I must have the content of the row.
&lt;BR /&gt;What is the global variable to get the row string? How can I find documentation about this?
&lt;BR /&gt;Regards
&lt;BR /&gt;Alessandro</description>
      <pubDate>Thu, 13 Feb 2014 14:44:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209715#M8422</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-13T14:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209716#M8423</link>
      <description>Hi people&lt;BR /&gt;Is it really so hard to have this information?&lt;BR /&gt;I have not found documentation about global variables, Is it necessary from someone to help me.&lt;BR /&gt;Thanks, regards.&lt;BR /&gt;Alessandro</description>
      <pubDate>Wed, 19 Feb 2014 09:23:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209716#M8423</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-19T09:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209717#M8424</link>
      <description>Up.&lt;BR /&gt;Help me please.&lt;BR /&gt;The information required is:&lt;BR /&gt;the global variable related to component tFileInputFullRow to get the content of current the row.&lt;BR /&gt;Then I would like to manipulate it in a jJava component.&lt;BR /&gt;Thanks, regards.&lt;BR /&gt;Alessandro</description>
      <pubDate>Fri, 21 Feb 2014 08:43:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209717#M8424</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-21T08:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209718#M8425</link>
      <description>Hi Alessandro 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;The global variable (Integer)globalMap.get("tFileInputFullRow_1_NB_LINE") can to be helpful but in first time I must have the content of the row.&lt;BR /&gt;What is the global variable to get the row string? How can I find documentation about this?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Not all of the components documents its global variables right now, we had reported this request to our Doc team, and we will explain the global variable related to the component one by one in future versions of document. 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Then if I my row start (es.) with SUMMARY: or DTSTART: I take the value after ":" and I save the value in a structure with a row for each event with the field required.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;tFileInputFullRow is the best component to read the entire row one by one from the source file, and then you can use a tFilterRow to tMap to filter rows that starts from SUMMARY: or DTSTART:, then extract the value after ":" on tJavaRow, for example: 
&lt;BR /&gt; 
&lt;PRE&gt;output_row.SUMMARY=input_row.line.substring(input_row.line.indexOf(":")+1);&lt;/PRE&gt; 
&lt;BR /&gt;For more details, please see my screenshots. (In this case, I use a tFixedFlowInput to generate the source data provided by you) 
&lt;BR /&gt;Hope this can give you tip! 
&lt;BR /&gt;Shong 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrD.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130783i9247E244A3B85BAB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrD.png" alt="0683p000009MCrD.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCca.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157512i9C457F0E26549944/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCca.png" alt="0683p000009MCca.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrI.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144649iD9168B0C1723201D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrI.png" alt="0683p000009MCrI.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrN.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157034i187D27981A4E2631/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrN.png" alt="0683p000009MCrN.png" /&gt;&lt;/span&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MCrS.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142149iDD0B8458B64E98E1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MCrS.png" alt="0683p000009MCrS.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Fri, 21 Feb 2014 10:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209718#M8425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-21T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209719#M8426</link>
      <description>Hi Shong, hi forum 
&lt;BR /&gt;thank you, thank you very very much for this suggestions and the complete example about my issue. 
&lt;BR /&gt;Unfortunately, the example is not adequate to process the file .ics Google because it has a more complex structure than what I initially described. 
&lt;BR /&gt;For example between the lines: 
&lt;BR /&gt; 
&lt;PRE&gt;BEGIN:VEVENT&lt;BR /&gt;&lt;BR /&gt;END:VEVENT&lt;/PRE&gt; 
&lt;BR /&gt;it can to be more that one lines that begin with "DESCRIPTION:" and this it destroys the index of the data in the same section of the event. 
&lt;BR /&gt;But this is not a problem, nevertheless the suggestions and the example are very very useful for the development that I'm thinking of doing because I discovered the component tJavaRow which is better than the global variable that I thought to use. 
&lt;BR /&gt;During the next days I will work on tJavaRow and let you know. 
&lt;BR /&gt;Thanks, regards. 
&lt;BR /&gt;Alessandro</description>
      <pubDate>Sun, 23 Feb 2014 19:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209719#M8426</guid>
      <dc:creator>AlessandroCic</dc:creator>
      <dc:date>2014-02-23T19:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reading and parsing Google Calendar ics file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209720#M8427</link>
      <description>Alessandro 
&lt;BR /&gt;Yes, the example job is designed based on the example data you gave, however, I am sure it will give you some hints to achieve your request. If each event may contains more than one "DESCRIPTION:", you can also extract other property such as DTSTAMP that can be an identifier for each event, the identifier will be the key for merging the columns later if needed. 
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 24 Feb 2014 02:12:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-and-parsing-Google-Calendar-ics-file/m-p/2209720#M8427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-24T02:12:38Z</dc:date>
    </item>
  </channel>
</rss>

