<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to FAQ</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>Recent changes to FAQ</description><atom:link href="https://sourceforge.net/p/atomprobelab/wiki/FAQ/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 05 Aug 2020 09:00:10 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/atomprobelab/wiki/FAQ/feed" rel="self" type="application/rss+xml"/><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -6,7 +6,7 @@
 ### Is there a description of the method for solving single-ion mass peak overlaps?
 The idea for the method was first described by [Cairney et. al (2015)](https://doi.org/10.1016/j.ultramic.2015.05.006 "Mining information from atom probe data") (in the section on "Spectral decomposition in atom probe") but an improved version of the method with fewer limitations using maximum likelihood estimation was published by [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy").

-AtomProbeLab is licensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") helpful.
+AtomProbeLab is licensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") - for single-ion overlap solving or [London (2019)](https://doi.org/10.1017/S1431927618016276) - for quantification of uncertainty arising from overlaps, helpful.
 ### Why does AtomProbeLab exist?
 My PhD involved the analysis of a lot of atom probe microscopy data. Due to the limitations of the tools available at the time, I found helpful to start writing my own analysis tools in Matlab. Many of the earlier functions focused on cluster analysis and were badly written and overly specific. Later, I wrote more general functions that were helpful to other people. I shared my code with colleagues and having an online repository for the code was a natural progression. When [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") was published it acted as a catalyst to but the code used in the paper online - and so AtomProbeLab was born.
 ### Why Matlab?
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Wed, 05 Aug 2020 09:00:10 -0000</pubDate><guid>https://sourceforge.netb6f58d2e122fe813944e5cb18ca250c89bf45df1</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -58,7 +58,11 @@

 If you plot the residual as well then the bar height will exactly match the measured peak counts. It gets a bit confusing though, as the residual can make up a short bar to the "x" or a negative residual, then it plots over the top of the bar which goes above the "x" - which looks weird.

-
+### How can I make averaged composition line profiles?
+You can use the script in src/cluster/ called [averagedCompLineProfiles_script].m
+You need a cluster statistics files created by IVAS, pos files and range files. The cluster stats file is used to define the size and location of the clusters, so you don't need to use IVAS, but that is how it is set up at the moment.
+Running it with the data supplied is very boring, but if you supply your own lists of files it *should* work.
+It is still rather early in development... but it should be enough to save you many hours of doing line profiles manually.

 ## Common errors and warnings

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:58:20 -0000</pubDate><guid>https://sourceforge.netc0139daa1ef7e1fe8dd3b20b58d76e40b86c09d5</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v12
+++ v13
@@ -21,7 +21,8 @@
     rangeTableDecompEle,rangeTableDecompIonic,overlapIonicRangeComp, ...
     ionAmounts] = massOverlapSolver(OP,confidenceAlpha,useWeightPercent);
 ~~~
-And that you have the overlap problem stored in a struct called OP.
+And that you have the overlap problem stored in a struct called OP (to build an overlap problem see [overlapProblemBuilder]).
+The following is taken from a loop over all the different overlap groups, with the loop variable "o".
 ~~~
 % Get overlap fit details
 s = OP.overlapTable{o};
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:54:19 -0000</pubDate><guid>https://sourceforge.net295ec1c122baf59050d62da32b972f18a70616bc</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v11
+++ v12
@@ -15,7 +15,13 @@
 This code will remain here for as long as sourceforge allows, but once I have implemented the outstanding features listed in the [TODO list], I am expecting to move on from developing AtomProbeLab. My hope is that I will be working on AtomProbeLab until the end of 2019 and then all the functionality will be migrated over to non-Matlab codes. For example, some "heavy" functions will be rewritten in C++ for [libatomprobe](https://bitbucket.org/mycae_gmx/libatomprobe) and the high-level scripting functionality will most likely be moved over to R.

 ### How do I get the overlap fit from massOverlapSolver?
-Basically for each overlap group we need the actual counts and the fit. The following sections of code are taken from demoScript_bulkDecomp.m
+Basically for each overlap group we need the actual counts and the fit. The following sections of code are taken from demoScript_bulkDecomp.m and the following assumes you have run that script, or at least massOverlapSolver like so:
+~~~
+[comp_ele,eleNames,comp_ionic,ionNames,deconvCounts,asRangedCounts ,...
+    rangeTableDecompEle,rangeTableDecompIonic,overlapIonicRangeComp, ...
+    ionAmounts] = massOverlapSolver(OP,confidenceAlpha,useWeightPercent);
+~~~
+And that you have the overlap problem stored in a struct called OP.
 ~~~
 % Get overlap fit details
 s = OP.overlapTable{o};
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:52:43 -0000</pubDate><guid>https://sourceforge.net689ca17ab2e39c4b63f05e439f5305f6c7fb0a34</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v10
+++ v11
@@ -34,8 +34,8 @@
 ~~~
 ... and the 1st column is the range counts.
 The amount of each ion in each range is given by the following:
-* To get the fit for each bar
-* Multiply the ideal peak abundance by the number of each ion
+- To get the fit for each bar
+- Multiply the ideal peak abundance by the number of each ion
 Note: bsxfun does a column-wise multiplication, multiplying each column of s by each item in ionAmounts1 - it's a shortcut where a loop would otherwise be used.
 ~~~
 barValues = bsxfun(@times,s(:,2:end),ionAmounts1);
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:50:43 -0000</pubDate><guid>https://sourceforge.net77cccb5a661ca51b24acd8148269169d75f5e619</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v9
+++ v10
@@ -31,9 +31,9 @@
 This is a matrix which has what proportion of each ion is in each range...
 ~~~
 rangeCounts1 = overlapIonicRangeComp{o}(:,1);  
- ~~~
-  .... and the 1st column is the range counts.
- The amount of each ion in each range is given by the following:
+~~~
+... and the 1st column is the range counts.
+The amount of each ion in each range is given by the following:
 * To get the fit for each bar
 * Multiply the ideal peak abundance by the number of each ion
 Note: bsxfun does a column-wise multiplication, multiplying each column of s by each item in ionAmounts1 - it's a shortcut where a loop would otherwise be used.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:49:54 -0000</pubDate><guid>https://sourceforge.nete9bf4cf6e53bee4a2af4c9a00489db43e3e39362</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -21,14 +21,14 @@
 s = OP.overlapTable{o};
 ~~~
 This is the abundance matrix for this overlap, first column are the peak centres, other columns are each ion.
- ~~~
- ionAmounts1 = ionAmounts{o}(1:end-1);
- ~~~
- This is the amounts of each ion in this overlap group, last entry is the residual counts.
+~~~
+ionAmounts1 = ionAmounts{o}(1:end-1);
+~~~
+This is the amounts of each ion in this overlap group, last entry is the residual counts.
 ~~~
 ionicRangeComp = overlapIonicRangeComp{o}(:,2:end); 
- ~~~
- This is a matrix which has what proportion of each ion is in each range...
+~~~
+This is a matrix which has what proportion of each ion is in each range...
 ~~~
 rangeCounts1 = overlapIonicRangeComp{o}(:,1);  
  ~~~
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:47:59 -0000</pubDate><guid>https://sourceforge.net65c5a53472ad235322aeb0e3facbbcb799572708</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -13,6 +13,46 @@
 While Matlab is great for somethings, I am aware Matlab is not an ideal choice for this project. It makes prototyping code and importing data very easy, but it makes a barrier for people to use the code (you have to pay for Matlab) and some of the functions would run much faster if written in C++. When I started out, Matlab was an obvious choice but as the project has evolved it has become less ideal. But because all this code exists, it might as well be free for everyone to use - if you have Matlab that is!
 ### What is the future of AtomProbeLab?
 This code will remain here for as long as sourceforge allows, but once I have implemented the outstanding features listed in the [TODO list], I am expecting to move on from developing AtomProbeLab. My hope is that I will be working on AtomProbeLab until the end of 2019 and then all the functionality will be migrated over to non-Matlab codes. For example, some "heavy" functions will be rewritten in C++ for [libatomprobe](https://bitbucket.org/mycae_gmx/libatomprobe) and the high-level scripting functionality will most likely be moved over to R.
+
+### How do I get the overlap fit from massOverlapSolver?
+Basically for each overlap group we need the actual counts and the fit. The following sections of code are taken from demoScript_bulkDecomp.m
+~~~
+% Get overlap fit details
+s = OP.overlapTable{o};
+~~~
+This is the abundance matrix for this overlap, first column are the peak centres, other columns are each ion.
+ ~~~
+ ionAmounts1 = ionAmounts{o}(1:end-1);
+ ~~~
+ This is the amounts of each ion in this overlap group, last entry is the residual counts.
+~~~
+ionicRangeComp = overlapIonicRangeComp{o}(:,2:end); 
+ ~~~
+ This is a matrix which has what proportion of each ion is in each range...
+~~~
+rangeCounts1 = overlapIonicRangeComp{o}(:,1);  
+ ~~~
+  .... and the 1st column is the range counts.
+ The amount of each ion in each range is given by the following:
+* To get the fit for each bar
+* Multiply the ideal peak abundance by the number of each ion
+Note: bsxfun does a column-wise multiplication, multiplying each column of s by each item in ionAmounts1 - it's a shortcut where a loop would otherwise be used.
+~~~
+barValues = bsxfun(@times,s(:,2:end),ionAmounts1);
+~~~
+Plot a bar graph of the computed peak heights. Matlab plots each column of barValues as separately coloured bars, one column for each ion = one bar at each x-position for one ion (then there are multiple columns). Then over the top, plot the actual measured range counts from rangeCounts1 using a "x" marker.
+~~~
+bar(s(:,1),barValues,1,'stacked')
+hold on
+% Actual measured range counts as x's - plots the measured data against the fit
+plot(s(:,1),rangeCounts1,'kx');
+hold off
+~~~
+
+If you plot the residual as well then the bar height will exactly match the measured peak counts. It gets a bit confusing though, as the residual can make up a short bar to the "x" or a negative residual, then it plots over the top of the bar which goes above the "x" - which looks weird.
+
+
+
 ## Common errors and warnings

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Tue, 27 Nov 2018 12:47:15 -0000</pubDate><guid>https://sourceforge.net3dc8a547244988e5c11e8607c134ce293035649a</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -6,11 +6,11 @@
 ### Is there a description of the method for solving single-ion mass peak overlaps?
 The idea for the method was first described by [Cairney et. al (2015)](https://doi.org/10.1016/j.ultramic.2015.05.006 "Mining information from atom probe data") (in the section on "Spectral decomposition in atom probe") but an improved version of the method with fewer limitations using maximum likelihood estimation was published by [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy").

-AtomProbeLab is liscensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") helpful.
+AtomProbeLab is licensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") helpful.
 ### Why does AtomProbeLab exist?
-My PhD involved the analysis of a lot of atom probe microscopy data. Due to the limitations of the tools avaliable at the time, I found helpful to start writing my own analysis tools in Matlab. Many of the earlier functions focused on cluster analysis and were badly written and overly specific. Later, I wrote more general functions that were helpful to other people. I shared my code with collegues and having an online repository for the code was a natural progression. When [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") was published it acted as a catalyst to but the code used in the paper online - and so AtomProbeLab was born.
+My PhD involved the analysis of a lot of atom probe microscopy data. Due to the limitations of the tools available at the time, I found helpful to start writing my own analysis tools in Matlab. Many of the earlier functions focused on cluster analysis and were badly written and overly specific. Later, I wrote more general functions that were helpful to other people. I shared my code with colleagues and having an online repository for the code was a natural progression. When [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") was published it acted as a catalyst to but the code used in the paper online - and so AtomProbeLab was born.
 ### Why Matlab?
-While Matlab is great for somethings, I am aware Matlab is not an ideal choice for this project. It makes protyping code and importing data very easy, but it makes a barrier for people to use the code (you have to pay for Matlab) and some of the functions would run much faster if written in C++. When I started out, Matlab was an obvious choice but as the project has evolved it has become less ideal.
+While Matlab is great for somethings, I am aware Matlab is not an ideal choice for this project. It makes prototyping code and importing data very easy, but it makes a barrier for people to use the code (you have to pay for Matlab) and some of the functions would run much faster if written in C++. When I started out, Matlab was an obvious choice but as the project has evolved it has become less ideal. But because all this code exists, it might as well be free for everyone to use - if you have Matlab that is!
 ### What is the future of AtomProbeLab?
 This code will remain here for as long as sourceforge allows, but once I have implemented the outstanding features listed in the [TODO list], I am expecting to move on from developing AtomProbeLab. My hope is that I will be working on AtomProbeLab until the end of 2019 and then all the functionality will be migrated over to non-Matlab codes. For example, some "heavy" functions will be rewritten in C++ for [libatomprobe](https://bitbucket.org/mycae_gmx/libatomprobe) and the high-level scripting functionality will most likely be moved over to R.
 ## Common errors and warnings
@@ -38,7 +38,7 @@
 ~~~
 If the function is related to something in the curve fitting or statistics tool box, then you will need to install those MATLAB tool boxes first.

-### massOverlapSolver
+### massOverlapSolver: No element for range

 -----
@@ -59,3 +59,24 @@

 -  Remove the range from the range file: the range no longer exisits and it contributes no counts to the overall composition
 -  Set a lower minimum abundance limit in [overlapProblemBuilder]: now the range will be correctly identified as belonging to the the Pd&lt;sup&gt;+&lt;/sup&gt; and PdH&lt;sub&gt;2&lt;/sub&gt;&lt;sup&gt;+&lt;/sup&gt; overlap.
+
+### overlapProblemBuilder: peaks not be assigned to ranges
+
+
+-----
+
+#### Warning
+~~~
+Warning: *** Some peaks could not be assigned to ranges ***
+O+             abun.:   0.20%  :  18.0 Da
+*** These peaks will not be included in the overlap calculation ***
+~~~
+#### Explaination
+When  [overlapProblemBuilder] is used with the 'rangeFile' option (you supply a range file and these ranges define where peaks of different ions overlap), there can be a mis-match between the peaks defined by the ions and the mass-window ranges supplied. Above, the mass peak of O&lt;sup&gt;+&lt;/sup&gt;, with a natural abundance of 0.2%, at 18 Da does not fall into any of the ranges supplied. Any ions with unranged intensity will not be included in further calculations. In the example above, O&lt;sup&gt;+&lt;/sup&gt; would effectively change from 99.8% &lt;sup&gt;16&lt;/sup&gt;O and 0.2% &lt;sup&gt;18&lt;/sup&gt;O to just being 100%  &lt;sup&gt;16&lt;/sup&gt;O. Note: the minimum abundance limit already excluded &lt;sup&gt;18&lt;/sup&gt;O with a natural abundance of 0.04%. 
+
+Therefore, if O&lt;sup&gt;+&lt;/sup&gt; overlapped with Ti&lt;sup&gt;3+&lt;/sup&gt;, then any counts in the 18 Da peak will not be included in either solving the overlap or the resulting composition.
+#### Solution
+
+- Ignore it. You may not want to include the ions identified in the warning message. If they are small peaks with low intensities, you may introduce additional errors (through background noise and background correction) by ranging these peaks.
+- Range the peaks identified. The counts from these ranges will be used in all subsequent calculations.
+- Lower the minimum abundance (using the 'minAbundance' option in [overlapProblemBuilder]) so that these mass peaks are excluded. E.g. set the minimum abundance to 0.2%, this will exclude &lt;sup&gt;18&lt;/sup&gt;O.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Sat, 31 Mar 2018 09:20:14 -0000</pubDate><guid>https://sourceforge.netc1b1372de1532849bf3abb51a36aade8d4afac93</guid></item><item><title>FAQ modified by A London</title><link>https://sourceforge.net/p/atomprobelab/wiki/FAQ/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -4,10 +4,15 @@
 [TOC]
 ## FAQ
 ### Is there a description of the method for solving single-ion mass peak overlaps?
-The idea for the method was first described by [Cairney et. al (2015)](https://doi.org/10.1016/j.ultramic.2015.05.006 "Mining information from atom probe data") (in the section on "Spectral decomposition in atom probe") but an improved version of the method with fewer limitations using maximum likelihood estimation was published by [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy").  AtomProbeLab is liscensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy"). helpful.
+The idea for the method was first described by [Cairney et. al (2015)](https://doi.org/10.1016/j.ultramic.2015.05.006 "Mining information from atom probe data") (in the section on "Spectral decomposition in atom probe") but an improved version of the method with fewer limitations using maximum likelihood estimation was published by [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy"). 
+
+AtomProbeLab is liscensed under GPL and is *not* citeware, however, if you use this method in your work and publish it, you may find citing  [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") helpful.
 ### Why does AtomProbeLab exist?
+My PhD involved the analysis of a lot of atom probe microscopy data. Due to the limitations of the tools avaliable at the time, I found helpful to start writing my own analysis tools in Matlab. Many of the earlier functions focused on cluster analysis and were badly written and overly specific. Later, I wrote more general functions that were helpful to other people. I shared my code with collegues and having an online repository for the code was a natural progression. When [London et at. (2017)](https://doi.org/10.1017/S1431927616012782 "Single-Ion Deconvolution of Mass Peak Overlaps for Atom Probe Microscopy") was published it acted as a catalyst to but the code used in the paper online - and so AtomProbeLab was born.
+### Why Matlab?
+While Matlab is great for somethings, I am aware Matlab is not an ideal choice for this project. It makes protyping code and importing data very easy, but it makes a barrier for people to use the code (you have to pay for Matlab) and some of the functions would run much faster if written in C++. When I started out, Matlab was an obvious choice but as the project has evolved it has become less ideal.
 ### What is the future of AtomProbeLab?
-
+This code will remain here for as long as sourceforge allows, but once I have implemented the outstanding features listed in the [TODO list], I am expecting to move on from developing AtomProbeLab. My hope is that I will be working on AtomProbeLab until the end of 2019 and then all the functionality will be migrated over to non-Matlab codes. For example, some "heavy" functions will be rewritten in C++ for [libatomprobe](https://bitbucket.org/mycae_gmx/libatomprobe) and the high-level scripting functionality will most likely be moved over to R.
 ## Common errors and warnings

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">A London</dc:creator><pubDate>Sat, 31 Mar 2018 08:57:21 -0000</pubDate><guid>https://sourceforge.net1e89355a7475b7be8a7b614dfdb36cab96d09bac</guid></item></channel></rss>