versio_rac1-podcast 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2fa9a69740d12305acec33f095656722ebb04a29
4
+ data.tar.gz: 051507d48f49d81551d0075a753642874d80fda3
5
+ SHA512:
6
+ metadata.gz: 54123a0d4549e25fc2e35af103786070f99dc900e2b832d4ce6246d5a7b2c23e31b84c78000d3d73b4fda4f178620fd6d28a4f4864dbc5ac9fd97c0dff4880e0
7
+ data.tar.gz: 73f25aefc44fa110eed52a1cc9d1185d7bff9c0687e547c076684df58225a78f4d4c5194563bc29e96f0a337b9c33ba50da8be3b6143c2e59797e99e796f1699
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.hound.yml ADDED
@@ -0,0 +1,3 @@
1
+ inherit_from:
2
+ - .hound_defaults.yml
3
+ - .rubocop.yml
@@ -0,0 +1,245 @@
1
+ # https://github.com/thoughtbot/hound/blob/master/config/rubocop.yml
2
+ # Do not edit - override these settings in .rubocop.yml
3
+
4
+ AllCops:
5
+ Exclude:
6
+ - db/schema.rb
7
+
8
+ AccessorMethodName:
9
+ Enabled: false
10
+
11
+ Alias:
12
+ Enabled: false
13
+
14
+ ArrayJoin:
15
+ Enabled: false
16
+
17
+ AsciiComments:
18
+ Enabled: false
19
+
20
+ AsciiIdentifiers:
21
+ Enabled: false
22
+
23
+ Attr:
24
+ Enabled: false
25
+
26
+ BlockNesting:
27
+ Enabled: false
28
+
29
+ CaseEquality:
30
+ Enabled: false
31
+
32
+ CharacterLiteral:
33
+ Enabled: false
34
+
35
+ ClassLength:
36
+ Enabled: false
37
+
38
+ ClassVars:
39
+ Enabled: false
40
+
41
+ CollectionMethods:
42
+ PreferredMethods:
43
+ find: detect
44
+ reduce: inject
45
+ collect: map
46
+ find_all: select
47
+
48
+ ColonMethodCall:
49
+ Enabled: false
50
+
51
+ CommentAnnotation:
52
+ Enabled: false
53
+
54
+ CyclomaticComplexity:
55
+ Enabled: false
56
+
57
+ Delegate:
58
+ Enabled: false
59
+
60
+ DeprecatedHashMethods:
61
+ Enabled: false
62
+
63
+ Documentation:
64
+ Enabled: false
65
+
66
+ DotPosition:
67
+ EnforcedStyle: trailing
68
+
69
+ DoubleNegation:
70
+ Enabled: false
71
+
72
+ EmptyLiteral:
73
+ Enabled: false
74
+
75
+ Encoding:
76
+ Enabled: false
77
+
78
+ EvenOdd:
79
+ Enabled: false
80
+
81
+ FileName:
82
+ Enabled: false
83
+
84
+ FlipFlop:
85
+ Enabled: false
86
+
87
+ FormatString:
88
+ Enabled: false
89
+
90
+ GlobalVars:
91
+ Enabled: false
92
+
93
+ IfUnlessModifier:
94
+ Enabled: false
95
+
96
+ IfWithSemicolon:
97
+ Enabled: false
98
+
99
+ Lambda:
100
+ Enabled: false
101
+
102
+ LambdaCall:
103
+ Enabled: false
104
+
105
+ LineEndConcatenation:
106
+ Enabled: false
107
+
108
+ LineLength:
109
+ Max: 80
110
+
111
+ MethodLength:
112
+ Enabled: false
113
+
114
+ ModuleFunction:
115
+ Enabled: false
116
+
117
+ NegatedIf:
118
+ Enabled: false
119
+
120
+ NegatedWhile:
121
+ Enabled: false
122
+
123
+ NilComparison:
124
+ Enabled: false
125
+
126
+ Not:
127
+ Enabled: false
128
+
129
+ NumericLiterals:
130
+ Enabled: false
131
+
132
+ OneLineConditional:
133
+ Enabled: false
134
+
135
+ OpMethod:
136
+ Enabled: false
137
+
138
+ ParameterLists:
139
+ Enabled: false
140
+
141
+ PercentLiteralDelimiters:
142
+ PreferredDelimiters:
143
+ '%': '{}'
144
+
145
+ PerlBackrefs:
146
+ Enabled: false
147
+
148
+ PredicateName:
149
+ NamePrefixBlacklist:
150
+ - is_
151
+
152
+ Proc:
153
+ Enabled: false
154
+
155
+ RaiseArgs:
156
+ Enabled: false
157
+
158
+ RegexpLiteral:
159
+ Enabled: false
160
+
161
+ SelfAssignment:
162
+ Enabled: false
163
+
164
+ SingleLineBlockParams:
165
+ Enabled: false
166
+
167
+ SingleLineMethods:
168
+ Enabled: false
169
+
170
+ SignalException:
171
+ Enabled: false
172
+
173
+ SpecialGlobalVars:
174
+ Enabled: false
175
+
176
+ StringLiterals:
177
+ EnforcedStyle: double_quotes
178
+
179
+ VariableInterpolation:
180
+ Enabled: false
181
+
182
+ TrailingComma:
183
+ Enabled: false
184
+
185
+ TrivialAccessors:
186
+ Enabled: false
187
+
188
+ VariableInterpolation:
189
+ Enabled: false
190
+
191
+ WhenThen:
192
+ Enabled: false
193
+
194
+ WhileUntilModifier:
195
+ Enabled: false
196
+
197
+ WordArray:
198
+ Enabled: false
199
+
200
+ # Lint
201
+
202
+ AmbiguousOperator:
203
+ Enabled: false
204
+
205
+ AmbiguousRegexpLiteral:
206
+ Enabled: false
207
+
208
+ AssignmentInCondition:
209
+ Enabled: false
210
+
211
+ ConditionPosition:
212
+ Enabled: false
213
+
214
+ DeprecatedClassMethods:
215
+ Enabled: false
216
+
217
+ ElseLayout:
218
+ Enabled: false
219
+
220
+ HandleExceptions:
221
+ Enabled: false
222
+
223
+ InvalidCharacterLiteral:
224
+ Enabled: false
225
+
226
+ LiteralInCondition:
227
+ Enabled: false
228
+
229
+ LiteralInInterpolation:
230
+ Enabled: false
231
+
232
+ Loop:
233
+ Enabled: false
234
+
235
+ ParenthesesAsGroupedExpression:
236
+ Enabled: false
237
+
238
+ RequireParentheses:
239
+ Enabled: false
240
+
241
+ UnderscorePrefixedVariableName:
242
+ Enabled: false
243
+
244
+ Void:
245
+ Enabled: false
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ require: rubocop-rspec
2
+
3
+ Lint/UselessAssignment:
4
+ Exclude:
5
+ - "spec/spec_helper.rb"
6
+
7
+ Metrics/LineLength:
8
+ Exclude:
9
+ - "*.gemspec"
10
+
11
+ Style/MultilineOperationIndentation:
12
+ Exclude:
13
+ - "lib/versio_rac1/podcast/episode.rb"
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.5
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in versio_rac1-podcast.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Josep
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # VersioRac1::Podcast
2
+
3
+ [![Build Status](https://travis-ci.org/apuratepp/versio_rac1-podcast.svg)](https://travis-ci.org/apuratepp/versio_rac1-podcast)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'versio_rac1-podcast'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install versio_rac1-podcast
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## License
26
+
27
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
28
+
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "rubocop/rake_task"
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+ RuboCop::RakeTask.new(:rubocop) do |task|
7
+ task.options = ["--display-cop-names", "-c.hound.yml"]
8
+ end
9
+
10
+ task default: [:quality, :spec]
11
+ task quality: [:rubocop]
data/bin/console ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "versio_rac1/podcast"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ require "pry"
11
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,1059 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.racalacarta.com/wp-feeder.php?limit=100&param=versio_rac1&prog=VERSIO%20RAC1
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Sun, 09 Aug 2015 13:33:32 GMT
23
+ Server:
24
+ - Apache/2.2.15 (CentOS)
25
+ X-Powered-By:
26
+ - PHP/5.3.3
27
+ Transfer-Encoding:
28
+ - chunked
29
+ Content-Type:
30
+ - text/xml
31
+ body:
32
+ encoding: UTF-8
33
+ string: |
34
+ <?xml version="1.0" encoding="UTF-8"?>
35
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
36
+ <channel>
37
+ <title>RAC1 Podcast: VERSIO RAC1</title>
38
+ <link>http://www.rac1.org</link>
39
+ <description>Podcasts de RAC1</description>
40
+ <lastBuildDate>Sun, 09 Aug 2015 15:33:32 +0200</lastBuildDate>
41
+ <language>ca-ca</language>
42
+ <copyright>RAC1</copyright>
43
+ <generator>eVip DirCaster</generator>
44
+ <managingEditor>rac1@rac1.net (webmaster rac1)</managingEditor>
45
+ <itunes:image href="http://www.racalacarta.com/images/logorac1.jpg"/>
46
+ <itunes:category text='Podcasting' /><itunes:owner>
47
+ <itunes:name>RAC1</itunes:name>
48
+ <itunes:email>rac1@rac1.net</itunes:email>
49
+ </itunes:owner>
50
+ <itunes:explicit>no</itunes:explicit>
51
+ <category>Podcasts</category>
52
+ <atom:link href="http://www.racalacarta.com/wp-feeder.php?limit=100&amp;param=versio_rac1&amp;prog=VERSIO+RAC1" rel="self" type="application/rss+xml" />
53
+ <ttl>60</ttl>
54
+
55
+ <item>
56
+ <title>VERSIO RAC1 (07-08-15)</title>
57
+ <link>http://www.racalacarta.com/download.php?file=0807%2018h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
58
+ <description>Emis.: 07-08-15 a les 18h</description>
59
+ <pubDate>Fri, 07 Aug 2015 15:17:39 +0000</pubDate>
60
+ <guid>http://www.racalacarta.com/download.php?file=0807%2018h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
61
+ <enclosure url="http://www.racalacarta.com/download.php-file=0807%2018h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
62
+ <category>VERSIO RAC1</category>
63
+ </item>
64
+
65
+ <item>
66
+ <title>VERSIO RAC1 (07-08-15)</title>
67
+ <link>http://www.racalacarta.com/download.php?file=0807%2017h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
68
+ <description>Emis.: 07-08-15 a les 17h</description>
69
+ <pubDate>Fri, 07 Aug 2015 14:17:36 +0000</pubDate>
70
+ <guid>http://www.racalacarta.com/download.php?file=0807%2017h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
71
+ <enclosure url="http://www.racalacarta.com/download.php-file=0807%2017h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21606818" type="audio/mpeg" />
72
+ <category>VERSIO RAC1</category>
73
+ </item>
74
+
75
+ <item>
76
+ <title>VERSIO RAC1 (07-08-15)</title>
77
+ <link>http://www.racalacarta.com/download.php?file=0807%2016h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
78
+ <description>Emis.: 07-08-15 a les 16h</description>
79
+ <pubDate>Fri, 07 Aug 2015 13:17:36 +0000</pubDate>
80
+ <guid>http://www.racalacarta.com/download.php?file=0807%2016h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
81
+ <enclosure url="http://www.racalacarta.com/download.php-file=0807%2016h%20(Divendres%2007-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
82
+ <category>VERSIO RAC1</category>
83
+ </item>
84
+
85
+ <item>
86
+ <title>VERSIO RAC1 (06-08-15)</title>
87
+ <link>http://www.racalacarta.com/download.php?file=0806%2018h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
88
+ <description>Emis.: 06-08-15 a les 18h</description>
89
+ <pubDate>Thu, 06 Aug 2015 15:17:38 +0000</pubDate>
90
+ <guid>http://www.racalacarta.com/download.php?file=0806%2018h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
91
+ <enclosure url="http://www.racalacarta.com/download.php-file=0806%2018h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
92
+ <category>VERSIO RAC1</category>
93
+ </item>
94
+
95
+ <item>
96
+ <title>VERSIO RAC1 (06-08-15)</title>
97
+ <link>http://www.racalacarta.com/download.php?file=0806%2017h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
98
+ <description>Emis.: 06-08-15 a les 17h</description>
99
+ <pubDate>Thu, 06 Aug 2015 14:17:38 +0000</pubDate>
100
+ <guid>http://www.racalacarta.com/download.php?file=0806%2017h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
101
+ <enclosure url="http://www.racalacarta.com/download.php-file=0806%2017h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
102
+ <category>VERSIO RAC1</category>
103
+ </item>
104
+
105
+ <item>
106
+ <title>VERSIO RAC1 (06-08-15)</title>
107
+ <link>http://www.racalacarta.com/download.php?file=0806%2016h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
108
+ <description>Emis.: 06-08-15 a les 16h</description>
109
+ <pubDate>Thu, 06 Aug 2015 13:17:41 +0000</pubDate>
110
+ <guid>http://www.racalacarta.com/download.php?file=0806%2016h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
111
+ <enclosure url="http://www.racalacarta.com/download.php-file=0806%2016h%20(Dijous%2006-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
112
+ <category>VERSIO RAC1</category>
113
+ </item>
114
+
115
+ <item>
116
+ <title>VERSIO RAC1 (05-08-15)</title>
117
+ <link>http://www.racalacarta.com/download.php?file=0805%2018h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
118
+ <description>Emis.: 05-08-15 a les 18h</description>
119
+ <pubDate>Wed, 05 Aug 2015 15:17:36 +0000</pubDate>
120
+ <guid>http://www.racalacarta.com/download.php?file=0805%2018h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
121
+ <enclosure url="http://www.racalacarta.com/download.php-file=0805%2018h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
122
+ <category>VERSIO RAC1</category>
123
+ </item>
124
+
125
+ <item>
126
+ <title>VERSIO RAC1 (05-08-15)</title>
127
+ <link>http://www.racalacarta.com/download.php?file=0805%2017h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
128
+ <description>Emis.: 05-08-15 a les 17h</description>
129
+ <pubDate>Wed, 05 Aug 2015 14:17:38 +0000</pubDate>
130
+ <guid>http://www.racalacarta.com/download.php?file=0805%2017h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
131
+ <enclosure url="http://www.racalacarta.com/download.php-file=0805%2017h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
132
+ <category>VERSIO RAC1</category>
133
+ </item>
134
+
135
+ <item>
136
+ <title>VERSIO RAC1 (05-08-15)</title>
137
+ <link>http://www.racalacarta.com/download.php?file=0805%2016h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
138
+ <description>Emis.: 05-08-15 a les 16h</description>
139
+ <pubDate>Wed, 05 Aug 2015 13:17:42 +0000</pubDate>
140
+ <guid>http://www.racalacarta.com/download.php?file=0805%2016h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
141
+ <enclosure url="http://www.racalacarta.com/download.php-file=0805%2016h%20(Dimecres%2005-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
142
+ <category>VERSIO RAC1</category>
143
+ </item>
144
+
145
+ <item>
146
+ <title>VERSIO RAC1 (04-08-15)</title>
147
+ <link>http://www.racalacarta.com/download.php?file=0804%2018h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
148
+ <description>Emis.: 04-08-15 a les 18h</description>
149
+ <pubDate>Tue, 04 Aug 2015 15:17:34 +0000</pubDate>
150
+ <guid>http://www.racalacarta.com/download.php?file=0804%2018h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
151
+ <enclosure url="http://www.racalacarta.com/download.php-file=0804%2018h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
152
+ <category>VERSIO RAC1</category>
153
+ </item>
154
+
155
+ <item>
156
+ <title>VERSIO RAC1 (04-08-15)</title>
157
+ <link>http://www.racalacarta.com/download.php?file=0804%2017h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
158
+ <description>Emis.: 04-08-15 a les 17h</description>
159
+ <pubDate>Tue, 04 Aug 2015 14:20:37 +0000</pubDate>
160
+ <guid>http://www.racalacarta.com/download.php?file=0804%2017h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
161
+ <enclosure url="http://www.racalacarta.com/download.php-file=0804%2017h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
162
+ <category>VERSIO RAC1</category>
163
+ </item>
164
+
165
+ <item>
166
+ <title>VERSIO RAC1 (04-08-15)</title>
167
+ <link>http://www.racalacarta.com/download.php?file=0804%2016h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
168
+ <description>Emis.: 04-08-15 a les 16h</description>
169
+ <pubDate>Tue, 04 Aug 2015 13:17:29 +0000</pubDate>
170
+ <guid>http://www.racalacarta.com/download.php?file=0804%2016h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
171
+ <enclosure url="http://www.racalacarta.com/download.php-file=0804%2016h%20(Dimarts%2004-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
172
+ <category>VERSIO RAC1</category>
173
+ </item>
174
+
175
+ <item>
176
+ <title>VERSIO RAC1 (03-08-15)</title>
177
+ <link>http://www.racalacarta.com/download.php?file=0803%2018h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
178
+ <description>Emis.: 03-08-15 a les 18h</description>
179
+ <pubDate>Mon, 03 Aug 2015 15:20:43 +0000</pubDate>
180
+ <guid>http://www.racalacarta.com/download.php?file=0803%2018h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
181
+ <enclosure url="http://www.racalacarta.com/download.php-file=0803%2018h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21610109" type="audio/mpeg" />
182
+ <category>VERSIO RAC1</category>
183
+ </item>
184
+
185
+ <item>
186
+ <title>VERSIO RAC1 (03-08-15)</title>
187
+ <link>http://www.racalacarta.com/download.php?file=0803%2017h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
188
+ <description>Emis.: 03-08-15 a les 17h</description>
189
+ <pubDate>Mon, 03 Aug 2015 14:17:42 +0000</pubDate>
190
+ <guid>http://www.racalacarta.com/download.php?file=0803%2017h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
191
+ <enclosure url="http://www.racalacarta.com/download.php-file=0803%2017h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
192
+ <category>VERSIO RAC1</category>
193
+ </item>
194
+
195
+ <item>
196
+ <title>VERSIO RAC1 (03-08-15)</title>
197
+ <link>http://www.racalacarta.com/download.php?file=0803%2016h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</link>
198
+ <description>Emis.: 03-08-15 a les 16h</description>
199
+ <pubDate>Mon, 03 Aug 2015 13:17:31 +0000</pubDate>
200
+ <guid>http://www.racalacarta.com/download.php?file=0803%2016h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3</guid>
201
+ <enclosure url="http://www.racalacarta.com/download.php-file=0803%2016h%20(Dilluns%2003-08-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
202
+ <category>VERSIO RAC1</category>
203
+ </item>
204
+
205
+ <item>
206
+ <title>VERSIO RAC1 (31-07-15)</title>
207
+ <link>http://www.racalacarta.com/download.php?file=0731%2018h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
208
+ <description>Emis.: 31-07-15 a les 18h</description>
209
+ <pubDate>Fri, 31 Jul 2015 15:17:21 +0000</pubDate>
210
+ <guid>http://www.racalacarta.com/download.php?file=0731%2018h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
211
+ <enclosure url="http://www.racalacarta.com/download.php-file=0731%2018h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
212
+ <category>VERSIO RAC1</category>
213
+ </item>
214
+
215
+ <item>
216
+ <title>VERSIO RAC1 (31-07-15)</title>
217
+ <link>http://www.racalacarta.com/download.php?file=0731%2017h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
218
+ <description>Emis.: 31-07-15 a les 17h</description>
219
+ <pubDate>Fri, 31 Jul 2015 14:17:27 +0000</pubDate>
220
+ <guid>http://www.racalacarta.com/download.php?file=0731%2017h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
221
+ <enclosure url="http://www.racalacarta.com/download.php-file=0731%2017h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
222
+ <category>VERSIO RAC1</category>
223
+ </item>
224
+
225
+ <item>
226
+ <title>VERSIO RAC1 (31-07-15)</title>
227
+ <link>http://www.racalacarta.com/download.php?file=0731%2016h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
228
+ <description>Emis.: 31-07-15 a les 16h</description>
229
+ <pubDate>Fri, 31 Jul 2015 13:17:24 +0000</pubDate>
230
+ <guid>http://www.racalacarta.com/download.php?file=0731%2016h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
231
+ <enclosure url="http://www.racalacarta.com/download.php-file=0731%2016h%20(Divendres%2031-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
232
+ <category>VERSIO RAC1</category>
233
+ </item>
234
+
235
+ <item>
236
+ <title>VERSIO RAC1 (30-07-15)</title>
237
+ <link>http://www.racalacarta.com/download.php?file=0730%2018h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
238
+ <description>Emis.: 30-07-15 a les 18h</description>
239
+ <pubDate>Thu, 30 Jul 2015 15:17:18 +0000</pubDate>
240
+ <guid>http://www.racalacarta.com/download.php?file=0730%2018h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
241
+ <enclosure url="http://www.racalacarta.com/download.php-file=0730%2018h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
242
+ <category>VERSIO RAC1</category>
243
+ </item>
244
+
245
+ <item>
246
+ <title>VERSIO RAC1 (30-07-15)</title>
247
+ <link>http://www.racalacarta.com/download.php?file=0730%2017h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
248
+ <description>Emis.: 30-07-15 a les 17h</description>
249
+ <pubDate>Thu, 30 Jul 2015 14:20:36 +0000</pubDate>
250
+ <guid>http://www.racalacarta.com/download.php?file=0730%2017h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
251
+ <enclosure url="http://www.racalacarta.com/download.php-file=0730%2017h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
252
+ <category>VERSIO RAC1</category>
253
+ </item>
254
+
255
+ <item>
256
+ <title>VERSIO RAC1 (30-07-15)</title>
257
+ <link>http://www.racalacarta.com/download.php?file=0730%2016h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
258
+ <description>Emis.: 30-07-15 a les 16h</description>
259
+ <pubDate>Thu, 30 Jul 2015 13:19:04 +0000</pubDate>
260
+ <guid>http://www.racalacarta.com/download.php?file=0730%2016h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
261
+ <enclosure url="http://www.racalacarta.com/download.php-file=0730%2016h%20(Dijous%2030-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21606818" type="audio/mpeg" />
262
+ <category>VERSIO RAC1</category>
263
+ </item>
264
+
265
+ <item>
266
+ <title>VERSIO RAC1 (29-07-15)</title>
267
+ <link>http://www.racalacarta.com/download.php?file=0729%2018h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
268
+ <description>Emis.: 29-07-15 a les 18h</description>
269
+ <pubDate>Wed, 29 Jul 2015 15:20:37 +0000</pubDate>
270
+ <guid>http://www.racalacarta.com/download.php?file=0729%2018h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
271
+ <enclosure url="http://www.racalacarta.com/download.php-file=0729%2018h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
272
+ <category>VERSIO RAC1</category>
273
+ </item>
274
+
275
+ <item>
276
+ <title>VERSIO RAC1 (29-07-15)</title>
277
+ <link>http://www.racalacarta.com/download.php?file=0729%2017h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
278
+ <description>Emis.: 29-07-15 a les 17h</description>
279
+ <pubDate>Wed, 29 Jul 2015 14:17:29 +0000</pubDate>
280
+ <guid>http://www.racalacarta.com/download.php?file=0729%2017h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
281
+ <enclosure url="http://www.racalacarta.com/download.php-file=0729%2017h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3" length="20033045" type="audio/mpeg" />
282
+ <category>VERSIO RAC1</category>
283
+ </item>
284
+
285
+ <item>
286
+ <title>VERSIO RAC1 (29-07-15)</title>
287
+ <link>http://www.racalacarta.com/download.php?file=0729%2016h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
288
+ <description>Emis.: 29-07-15 a les 16h</description>
289
+ <pubDate>Wed, 29 Jul 2015 13:17:25 +0000</pubDate>
290
+ <guid>http://www.racalacarta.com/download.php?file=0729%2016h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
291
+ <enclosure url="http://www.racalacarta.com/download.php-file=0729%2016h%20(Dimecres%2029-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
292
+ <category>VERSIO RAC1</category>
293
+ </item>
294
+
295
+ <item>
296
+ <title>VERSIO RAC1 (28-07-15)</title>
297
+ <link>http://www.racalacarta.com/download.php?file=0728%2018h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
298
+ <description>Emis.: 28-07-15 a les 18h</description>
299
+ <pubDate>Tue, 28 Jul 2015 15:17:15 +0000</pubDate>
300
+ <guid>http://www.racalacarta.com/download.php?file=0728%2018h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
301
+ <enclosure url="http://www.racalacarta.com/download.php-file=0728%2018h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
302
+ <category>VERSIO RAC1</category>
303
+ </item>
304
+
305
+ <item>
306
+ <title>VERSIO RAC1 (28-07-15)</title>
307
+ <link>http://www.racalacarta.com/download.php?file=0728%2017h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
308
+ <description>Emis.: 28-07-15 a les 17h</description>
309
+ <pubDate>Tue, 28 Jul 2015 14:17:29 +0000</pubDate>
310
+ <guid>http://www.racalacarta.com/download.php?file=0728%2017h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
311
+ <enclosure url="http://www.racalacarta.com/download.php-file=0728%2017h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
312
+ <category>VERSIO RAC1</category>
313
+ </item>
314
+
315
+ <item>
316
+ <title>VERSIO RAC1 (28-07-15)</title>
317
+ <link>http://www.racalacarta.com/download.php?file=0728%2016h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
318
+ <description>Emis.: 28-07-15 a les 16h</description>
319
+ <pubDate>Tue, 28 Jul 2015 13:20:35 +0000</pubDate>
320
+ <guid>http://www.racalacarta.com/download.php?file=0728%2016h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
321
+ <enclosure url="http://www.racalacarta.com/download.php-file=0728%2016h%20(Dimarts%2028-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
322
+ <category>VERSIO RAC1</category>
323
+ </item>
324
+
325
+ <item>
326
+ <title>VERSIO RAC1 (27-07-15)</title>
327
+ <link>http://www.racalacarta.com/download.php?file=0727%2018h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
328
+ <description>Emis.: 27-07-15 a les 18h</description>
329
+ <pubDate>Mon, 27 Jul 2015 15:17:22 +0000</pubDate>
330
+ <guid>http://www.racalacarta.com/download.php?file=0727%2018h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
331
+ <enclosure url="http://www.racalacarta.com/download.php-file=0727%2018h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
332
+ <category>VERSIO RAC1</category>
333
+ </item>
334
+
335
+ <item>
336
+ <title>VERSIO RAC1 (27-07-15)</title>
337
+ <link>http://www.racalacarta.com/download.php?file=0727%2017h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
338
+ <description>Emis.: 27-07-15 a les 17h</description>
339
+ <pubDate>Mon, 27 Jul 2015 14:17:17 +0000</pubDate>
340
+ <guid>http://www.racalacarta.com/download.php?file=0727%2017h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
341
+ <enclosure url="http://www.racalacarta.com/download.php-file=0727%2017h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
342
+ <category>VERSIO RAC1</category>
343
+ </item>
344
+
345
+ <item>
346
+ <title>VERSIO RAC1 (27-07-15)</title>
347
+ <link>http://www.racalacarta.com/download.php?file=0727%2016h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
348
+ <description>Emis.: 27-07-15 a les 16h</description>
349
+ <pubDate>Mon, 27 Jul 2015 13:17:17 +0000</pubDate>
350
+ <guid>http://www.racalacarta.com/download.php?file=0727%2016h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
351
+ <enclosure url="http://www.racalacarta.com/download.php-file=0727%2016h%20(Dilluns%2027-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
352
+ <category>VERSIO RAC1</category>
353
+ </item>
354
+
355
+ <item>
356
+ <title>VERSIO RAC1 (24-07-15)</title>
357
+ <link>http://www.racalacarta.com/download.php?file=0724%2018h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
358
+ <description>Emis.: 24-07-15 a les 18h</description>
359
+ <pubDate>Fri, 24 Jul 2015 15:17:08 +0000</pubDate>
360
+ <guid>http://www.racalacarta.com/download.php?file=0724%2018h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
361
+ <enclosure url="http://www.racalacarta.com/download.php-file=0724%2018h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
362
+ <category>VERSIO RAC1</category>
363
+ </item>
364
+
365
+ <item>
366
+ <title>VERSIO RAC1 (24-07-15)</title>
367
+ <link>http://www.racalacarta.com/download.php?file=0724%2017h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
368
+ <description>Emis.: 24-07-15 a les 17h</description>
369
+ <pubDate>Fri, 24 Jul 2015 14:17:16 +0000</pubDate>
370
+ <guid>http://www.racalacarta.com/download.php?file=0724%2017h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
371
+ <enclosure url="http://www.racalacarta.com/download.php-file=0724%2017h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21606818" type="audio/mpeg" />
372
+ <category>VERSIO RAC1</category>
373
+ </item>
374
+
375
+ <item>
376
+ <title>VERSIO RAC1 (24-07-15)</title>
377
+ <link>http://www.racalacarta.com/download.php?file=0724%2016h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
378
+ <description>Emis.: 24-07-15 a les 16h</description>
379
+ <pubDate>Fri, 24 Jul 2015 13:17:07 +0000</pubDate>
380
+ <guid>http://www.racalacarta.com/download.php?file=0724%2016h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
381
+ <enclosure url="http://www.racalacarta.com/download.php-file=0724%2016h%20(Divendres%2024-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
382
+ <category>VERSIO RAC1</category>
383
+ </item>
384
+
385
+ <item>
386
+ <title>VERSIO RAC1 (23-07-15)</title>
387
+ <link>http://www.racalacarta.com/download.php?file=0723%2018h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
388
+ <description>Emis.: 23-07-15 a les 18h</description>
389
+ <pubDate>Thu, 23 Jul 2015 15:17:17 +0000</pubDate>
390
+ <guid>http://www.racalacarta.com/download.php?file=0723%2018h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
391
+ <enclosure url="http://www.racalacarta.com/download.php-file=0723%2018h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
392
+ <category>VERSIO RAC1</category>
393
+ </item>
394
+
395
+ <item>
396
+ <title>VERSIO RAC1 (23-07-15)</title>
397
+ <link>http://www.racalacarta.com/download.php?file=0723%2017h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
398
+ <description>Emis.: 23-07-15 a les 17h</description>
399
+ <pubDate>Thu, 23 Jul 2015 14:20:33 +0000</pubDate>
400
+ <guid>http://www.racalacarta.com/download.php?file=0723%2017h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
401
+ <enclosure url="http://www.racalacarta.com/download.php-file=0723%2017h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
402
+ <category>VERSIO RAC1</category>
403
+ </item>
404
+
405
+ <item>
406
+ <title>VERSIO RAC1 (23-07-15)</title>
407
+ <link>http://www.racalacarta.com/download.php?file=0723%2016h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
408
+ <description>Emis.: 23-07-15 a les 16h</description>
409
+ <pubDate>Thu, 23 Jul 2015 13:17:33 +0000</pubDate>
410
+ <guid>http://www.racalacarta.com/download.php?file=0723%2016h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
411
+ <enclosure url="http://www.racalacarta.com/download.php-file=0723%2016h%20(Dijous%2023-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
412
+ <category>VERSIO RAC1</category>
413
+ </item>
414
+
415
+ <item>
416
+ <title>VERSIO RAC1 (22-07-15)</title>
417
+ <link>http://www.racalacarta.com/download.php?file=0722%2018h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
418
+ <description>Emis.: 22-07-15 a les 18h</description>
419
+ <pubDate>Wed, 22 Jul 2015 15:17:00 +0000</pubDate>
420
+ <guid>http://www.racalacarta.com/download.php?file=0722%2018h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
421
+ <enclosure url="http://www.racalacarta.com/download.php-file=0722%2018h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21606818" type="audio/mpeg" />
422
+ <category>VERSIO RAC1</category>
423
+ </item>
424
+
425
+ <item>
426
+ <title>VERSIO RAC1 (22-07-15)</title>
427
+ <link>http://www.racalacarta.com/download.php?file=0722%2017h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
428
+ <description>Emis.: 22-07-15 a les 17h</description>
429
+ <pubDate>Wed, 22 Jul 2015 14:17:05 +0000</pubDate>
430
+ <guid>http://www.racalacarta.com/download.php?file=0722%2017h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
431
+ <enclosure url="http://www.racalacarta.com/download.php-file=0722%2017h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
432
+ <category>VERSIO RAC1</category>
433
+ </item>
434
+
435
+ <item>
436
+ <title>VERSIO RAC1 (22-07-15)</title>
437
+ <link>http://www.racalacarta.com/download.php?file=0722%2016h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
438
+ <description>Emis.: 22-07-15 a les 16h</description>
439
+ <pubDate>Wed, 22 Jul 2015 13:17:00 +0000</pubDate>
440
+ <guid>http://www.racalacarta.com/download.php?file=0722%2016h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
441
+ <enclosure url="http://www.racalacarta.com/download.php-file=0722%2016h%20(Dimecres%2022-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
442
+ <category>VERSIO RAC1</category>
443
+ </item>
444
+
445
+ <item>
446
+ <title>VERSIO RAC1 (21-07-15)</title>
447
+ <link>http://www.racalacarta.com/download.php?file=0721%2018h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
448
+ <description>Emis.: 21-07-15 a les 18h</description>
449
+ <pubDate>Tue, 21 Jul 2015 15:16:59 +0000</pubDate>
450
+ <guid>http://www.racalacarta.com/download.php?file=0721%2018h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
451
+ <enclosure url="http://www.racalacarta.com/download.php-file=0721%2018h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21583934" type="audio/mpeg" />
452
+ <category>VERSIO RAC1</category>
453
+ </item>
454
+
455
+ <item>
456
+ <title>VERSIO RAC1 (21-07-15)</title>
457
+ <link>http://www.racalacarta.com/download.php?file=0721%2017h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
458
+ <description>Emis.: 21-07-15 a les 17h</description>
459
+ <pubDate>Tue, 21 Jul 2015 14:17:04 +0000</pubDate>
460
+ <guid>http://www.racalacarta.com/download.php?file=0721%2017h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
461
+ <enclosure url="http://www.racalacarta.com/download.php-file=0721%2017h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21616692" type="audio/mpeg" />
462
+ <category>VERSIO RAC1</category>
463
+ </item>
464
+
465
+ <item>
466
+ <title>VERSIO RAC1 (21-07-15)</title>
467
+ <link>http://www.racalacarta.com/download.php?file=0721%2016h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
468
+ <description>Emis.: 21-07-15 a les 16h</description>
469
+ <pubDate>Tue, 21 Jul 2015 13:17:00 +0000</pubDate>
470
+ <guid>http://www.racalacarta.com/download.php?file=0721%2016h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
471
+ <enclosure url="http://www.racalacarta.com/download.php-file=0721%2016h%20(Dimarts%2021-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
472
+ <category>VERSIO RAC1</category>
473
+ </item>
474
+
475
+ <item>
476
+ <title>VERSIO RAC1 (20-07-15)</title>
477
+ <link>http://www.racalacarta.com/download.php?file=0720%2018h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
478
+ <description>Emis.: 20-07-15 a les 18h</description>
479
+ <pubDate>Mon, 20 Jul 2015 15:20:35 +0000</pubDate>
480
+ <guid>http://www.racalacarta.com/download.php?file=0720%2018h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
481
+ <enclosure url="http://www.racalacarta.com/download.php-file=0720%2018h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21590517" type="audio/mpeg" />
482
+ <category>VERSIO RAC1</category>
483
+ </item>
484
+
485
+ <item>
486
+ <title>VERSIO RAC1 (20-07-15)</title>
487
+ <link>http://www.racalacarta.com/download.php?file=0720%2017h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
488
+ <description>Emis.: 20-07-15 a les 17h</description>
489
+ <pubDate>Mon, 20 Jul 2015 14:17:03 +0000</pubDate>
490
+ <guid>http://www.racalacarta.com/download.php?file=0720%2017h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
491
+ <enclosure url="http://www.racalacarta.com/download.php-file=0720%2017h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21613401" type="audio/mpeg" />
492
+ <category>VERSIO RAC1</category>
493
+ </item>
494
+
495
+ <item>
496
+ <title>VERSIO RAC1 (20-07-15)</title>
497
+ <link>http://www.racalacarta.com/download.php?file=0720%2016h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
498
+ <description>Emis.: 20-07-15 a les 16h</description>
499
+ <pubDate>Mon, 20 Jul 2015 13:17:10 +0000</pubDate>
500
+ <guid>http://www.racalacarta.com/download.php?file=0720%2016h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
501
+ <enclosure url="http://www.racalacarta.com/download.php-file=0720%2016h%20(Dilluns%2020-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
502
+ <category>VERSIO RAC1</category>
503
+ </item>
504
+
505
+ <item>
506
+ <title>VERSIO RAC1 (17-07-15)</title>
507
+ <link>http://www.racalacarta.com/download.php?file=0717%2018h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
508
+ <description>Emis.: 17-07-15 a les 18h</description>
509
+ <pubDate>Fri, 17 Jul 2015 15:16:47 +0000</pubDate>
510
+ <guid>http://www.racalacarta.com/download.php?file=0717%2018h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
511
+ <enclosure url="http://www.racalacarta.com/download.php-file=0717%2018h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
512
+ <category>VERSIO RAC1</category>
513
+ </item>
514
+
515
+ <item>
516
+ <title>VERSIO RAC1 (17-07-15)</title>
517
+ <link>http://www.racalacarta.com/download.php?file=0717%2017h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
518
+ <description>Emis.: 17-07-15 a les 17h</description>
519
+ <pubDate>Fri, 17 Jul 2015 14:17:00 +0000</pubDate>
520
+ <guid>http://www.racalacarta.com/download.php?file=0717%2017h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
521
+ <enclosure url="http://www.racalacarta.com/download.php-file=0717%2017h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
522
+ <category>VERSIO RAC1</category>
523
+ </item>
524
+
525
+ <item>
526
+ <title>VERSIO RAC1 (17-07-15)</title>
527
+ <link>http://www.racalacarta.com/download.php?file=0717%2016h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
528
+ <description>Emis.: 17-07-15 a les 16h</description>
529
+ <pubDate>Fri, 17 Jul 2015 13:16:46 +0000</pubDate>
530
+ <guid>http://www.racalacarta.com/download.php?file=0717%2016h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
531
+ <enclosure url="http://www.racalacarta.com/download.php-file=0717%2016h%20(Divendres%2017-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
532
+ <category>VERSIO RAC1</category>
533
+ </item>
534
+
535
+ <item>
536
+ <title>VERSIO RAC1 (16-07-15)</title>
537
+ <link>http://www.racalacarta.com/download.php?file=0716%2018h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
538
+ <description>Emis.: 16-07-15 a les 18h</description>
539
+ <pubDate>Thu, 16 Jul 2015 15:16:45 +0000</pubDate>
540
+ <guid>http://www.racalacarta.com/download.php?file=0716%2018h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
541
+ <enclosure url="http://www.racalacarta.com/download.php-file=0716%2018h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21587226" type="audio/mpeg" />
542
+ <category>VERSIO RAC1</category>
543
+ </item>
544
+
545
+ <item>
546
+ <title>VERSIO RAC1 (16-07-15)</title>
547
+ <link>http://www.racalacarta.com/download.php?file=0716%2017h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
548
+ <description>Emis.: 16-07-15 a les 17h</description>
549
+ <pubDate>Thu, 16 Jul 2015 14:20:42 +0000</pubDate>
550
+ <guid>http://www.racalacarta.com/download.php?file=0716%2017h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
551
+ <enclosure url="http://www.racalacarta.com/download.php-file=0716%2017h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21610109" type="audio/mpeg" />
552
+ <category>VERSIO RAC1</category>
553
+ </item>
554
+
555
+ <item>
556
+ <title>VERSIO RAC1 (16-07-15)</title>
557
+ <link>http://www.racalacarta.com/download.php?file=0716%2016h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
558
+ <description>Emis.: 16-07-15 a les 16h</description>
559
+ <pubDate>Thu, 16 Jul 2015 13:16:54 +0000</pubDate>
560
+ <guid>http://www.racalacarta.com/download.php?file=0716%2016h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
561
+ <enclosure url="http://www.racalacarta.com/download.php-file=0716%2016h%20(Dijous%2016-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
562
+ <category>VERSIO RAC1</category>
563
+ </item>
564
+
565
+ <item>
566
+ <title>VERSIO RAC1 (15-07-15)</title>
567
+ <link>http://www.racalacarta.com/download.php?file=0715%2018h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
568
+ <description>Emis.: 15-07-15 a les 18h</description>
569
+ <pubDate>Wed, 15 Jul 2015 15:16:50 +0000</pubDate>
570
+ <guid>http://www.racalacarta.com/download.php?file=0715%2018h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
571
+ <enclosure url="http://www.racalacarta.com/download.php-file=0715%2018h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21583934" type="audio/mpeg" />
572
+ <category>VERSIO RAC1</category>
573
+ </item>
574
+
575
+ <item>
576
+ <title>VERSIO RAC1 (15-07-15)</title>
577
+ <link>http://www.racalacarta.com/download.php?file=0715%2017h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
578
+ <description>Emis.: 15-07-15 a les 17h</description>
579
+ <pubDate>Wed, 15 Jul 2015 14:17:02 +0000</pubDate>
580
+ <guid>http://www.racalacarta.com/download.php?file=0715%2017h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
581
+ <enclosure url="http://www.racalacarta.com/download.php-file=0715%2017h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21613401" type="audio/mpeg" />
582
+ <category>VERSIO RAC1</category>
583
+ </item>
584
+
585
+ <item>
586
+ <title>VERSIO RAC1 (15-07-15)</title>
587
+ <link>http://www.racalacarta.com/download.php?file=0715%2016h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
588
+ <description>Emis.: 15-07-15 a les 16h</description>
589
+ <pubDate>Wed, 15 Jul 2015 13:21:45 +0000</pubDate>
590
+ <guid>http://www.racalacarta.com/download.php?file=0715%2016h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
591
+ <enclosure url="http://www.racalacarta.com/download.php-file=0715%2016h%20(Dimecres%2015-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
592
+ <category>VERSIO RAC1</category>
593
+ </item>
594
+
595
+ <item>
596
+ <title>VERSIO RAC1 (14-07-15)</title>
597
+ <link>http://www.racalacarta.com/download.php?file=0714%2018h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
598
+ <description>Emis.: 14-07-15 a les 18h</description>
599
+ <pubDate>Tue, 14 Jul 2015 15:16:41 +0000</pubDate>
600
+ <guid>http://www.racalacarta.com/download.php?file=0714%2018h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
601
+ <enclosure url="http://www.racalacarta.com/download.php-file=0714%2018h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
602
+ <category>VERSIO RAC1</category>
603
+ </item>
604
+
605
+ <item>
606
+ <title>VERSIO RAC1 (14-07-15)</title>
607
+ <link>http://www.racalacarta.com/download.php?file=0714%2017h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
608
+ <description>Emis.: 14-07-15 a les 17h</description>
609
+ <pubDate>Tue, 14 Jul 2015 14:16:51 +0000</pubDate>
610
+ <guid>http://www.racalacarta.com/download.php?file=0714%2017h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
611
+ <enclosure url="http://www.racalacarta.com/download.php-file=0714%2017h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
612
+ <category>VERSIO RAC1</category>
613
+ </item>
614
+
615
+ <item>
616
+ <title>VERSIO RAC1 (14-07-15)</title>
617
+ <link>http://www.racalacarta.com/download.php?file=0714%2016h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
618
+ <description>Emis.: 14-07-15 a les 16h</description>
619
+ <pubDate>Tue, 14 Jul 2015 13:17:47 +0000</pubDate>
620
+ <guid>http://www.racalacarta.com/download.php?file=0714%2016h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
621
+ <enclosure url="http://www.racalacarta.com/download.php-file=0714%2016h%20(Dimarts%2014-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
622
+ <category>VERSIO RAC1</category>
623
+ </item>
624
+
625
+ <item>
626
+ <title>VERSIO RAC1 (13-07-15)</title>
627
+ <link>http://www.racalacarta.com/download.php?file=0713%2018h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
628
+ <description>Emis.: 13-07-15 a les 18h</description>
629
+ <pubDate>Mon, 13 Jul 2015 15:16:39 +0000</pubDate>
630
+ <guid>http://www.racalacarta.com/download.php?file=0713%2018h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
631
+ <enclosure url="http://www.racalacarta.com/download.php-file=0713%2018h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
632
+ <category>VERSIO RAC1</category>
633
+ </item>
634
+
635
+ <item>
636
+ <title>VERSIO RAC1 (13-07-15)</title>
637
+ <link>http://www.racalacarta.com/download.php?file=0713%2017h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
638
+ <description>Emis.: 13-07-15 a les 17h</description>
639
+ <pubDate>Mon, 13 Jul 2015 14:16:46 +0000</pubDate>
640
+ <guid>http://www.racalacarta.com/download.php?file=0713%2017h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
641
+ <enclosure url="http://www.racalacarta.com/download.php-file=0713%2017h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
642
+ <category>VERSIO RAC1</category>
643
+ </item>
644
+
645
+ <item>
646
+ <title>VERSIO RAC1 (13-07-15)</title>
647
+ <link>http://www.racalacarta.com/download.php?file=0713%2016h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
648
+ <description>Emis.: 13-07-15 a les 16h</description>
649
+ <pubDate>Mon, 13 Jul 2015 13:16:44 +0000</pubDate>
650
+ <guid>http://www.racalacarta.com/download.php?file=0713%2016h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
651
+ <enclosure url="http://www.racalacarta.com/download.php-file=0713%2016h%20(Dilluns%2013-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
652
+ <category>VERSIO RAC1</category>
653
+ </item>
654
+
655
+ <item>
656
+ <title>VERSIO RAC1 (10-07-15)</title>
657
+ <link>http://www.racalacarta.com/download.php?file=0710%2018h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
658
+ <description>Emis.: 10-07-15 a les 18h</description>
659
+ <pubDate>Fri, 10 Jul 2015 15:17:01 +0000</pubDate>
660
+ <guid>http://www.racalacarta.com/download.php?file=0710%2018h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
661
+ <enclosure url="http://www.racalacarta.com/download.php-file=0710%2018h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
662
+ <category>VERSIO RAC1</category>
663
+ </item>
664
+
665
+ <item>
666
+ <title>VERSIO RAC1 (10-07-15)</title>
667
+ <link>http://www.racalacarta.com/download.php?file=0710%2017h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
668
+ <description>Emis.: 10-07-15 a les 17h</description>
669
+ <pubDate>Fri, 10 Jul 2015 14:17:04 +0000</pubDate>
670
+ <guid>http://www.racalacarta.com/download.php?file=0710%2017h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
671
+ <enclosure url="http://www.racalacarta.com/download.php-file=0710%2017h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
672
+ <category>VERSIO RAC1</category>
673
+ </item>
674
+
675
+ <item>
676
+ <title>VERSIO RAC1 (10-07-15)</title>
677
+ <link>http://www.racalacarta.com/download.php?file=0710%2016h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
678
+ <description>Emis.: 10-07-15 a les 16h</description>
679
+ <pubDate>Fri, 10 Jul 2015 13:18:43 +0000</pubDate>
680
+ <guid>http://www.racalacarta.com/download.php?file=0710%2016h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
681
+ <enclosure url="http://www.racalacarta.com/download.php-file=0710%2016h%20(Divendres%2010-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
682
+ <category>VERSIO RAC1</category>
683
+ </item>
684
+
685
+ <item>
686
+ <title>VERSIO RAC1 (09-07-15)</title>
687
+ <link>http://www.racalacarta.com/download.php?file=0709%2018h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
688
+ <description>Emis.: 09-07-15 a les 18h</description>
689
+ <pubDate>Thu, 09 Jul 2015 15:18:08 +0000</pubDate>
690
+ <guid>http://www.racalacarta.com/download.php?file=0709%2018h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
691
+ <enclosure url="http://www.racalacarta.com/download.php-file=0709%2018h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
692
+ <category>VERSIO RAC1</category>
693
+ </item>
694
+
695
+ <item>
696
+ <title>VERSIO RAC1 (09-07-15)</title>
697
+ <link>http://www.racalacarta.com/download.php?file=0709%2017h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
698
+ <description>Emis.: 09-07-15 a les 17h</description>
699
+ <pubDate>Thu, 09 Jul 2015 14:19:28 +0000</pubDate>
700
+ <guid>http://www.racalacarta.com/download.php?file=0709%2017h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
701
+ <enclosure url="http://www.racalacarta.com/download.php-file=0709%2017h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
702
+ <category>VERSIO RAC1</category>
703
+ </item>
704
+
705
+ <item>
706
+ <title>VERSIO RAC1 (09-07-15)</title>
707
+ <link>http://www.racalacarta.com/download.php?file=0709%2016h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
708
+ <description>Emis.: 09-07-15 a les 16h</description>
709
+ <pubDate>Thu, 09 Jul 2015 13:28:53 +0000</pubDate>
710
+ <guid>http://www.racalacarta.com/download.php?file=0709%2016h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
711
+ <enclosure url="http://www.racalacarta.com/download.php-file=0709%2016h%20(Dijous%2009-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
712
+ <category>VERSIO RAC1</category>
713
+ </item>
714
+
715
+ <item>
716
+ <title>VERSIO RAC1 (08-07-15)</title>
717
+ <link>http://www.racalacarta.com/download.php?file=0708%2018h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
718
+ <description>Emis.: 08-07-15 a les 18h</description>
719
+ <pubDate>Wed, 08 Jul 2015 15:17:15 +0000</pubDate>
720
+ <guid>http://www.racalacarta.com/download.php?file=0708%2018h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
721
+ <enclosure url="http://www.racalacarta.com/download.php-file=0708%2018h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
722
+ <category>VERSIO RAC1</category>
723
+ </item>
724
+
725
+ <item>
726
+ <title>VERSIO RAC1 (08-07-15)</title>
727
+ <link>http://www.racalacarta.com/download.php?file=0708%2017h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
728
+ <description>Emis.: 08-07-15 a les 17h</description>
729
+ <pubDate>Wed, 08 Jul 2015 14:16:49 +0000</pubDate>
730
+ <guid>http://www.racalacarta.com/download.php?file=0708%2017h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
731
+ <enclosure url="http://www.racalacarta.com/download.php-file=0708%2017h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
732
+ <category>VERSIO RAC1</category>
733
+ </item>
734
+
735
+ <item>
736
+ <title>VERSIO RAC1 (08-07-15)</title>
737
+ <link>http://www.racalacarta.com/download.php?file=0708%2016h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
738
+ <description>Emis.: 08-07-15 a les 16h</description>
739
+ <pubDate>Wed, 08 Jul 2015 13:18:12 +0000</pubDate>
740
+ <guid>http://www.racalacarta.com/download.php?file=0708%2016h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
741
+ <enclosure url="http://www.racalacarta.com/download.php-file=0708%2016h%20(Dimecres%2008-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
742
+ <category>VERSIO RAC1</category>
743
+ </item>
744
+
745
+ <item>
746
+ <title>VERSIO RAC1 (07-07-15)</title>
747
+ <link>http://www.racalacarta.com/download.php?file=0707%2018h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
748
+ <description>Emis.: 07-07-15 a les 18h</description>
749
+ <pubDate>Tue, 07 Jul 2015 15:18:25 +0000</pubDate>
750
+ <guid>http://www.racalacarta.com/download.php?file=0707%2018h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
751
+ <enclosure url="http://www.racalacarta.com/download.php-file=0707%2018h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
752
+ <category>VERSIO RAC1</category>
753
+ </item>
754
+
755
+ <item>
756
+ <title>VERSIO RAC1 (07-07-15)</title>
757
+ <link>http://www.racalacarta.com/download.php?file=0707%2017h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
758
+ <description>Emis.: 07-07-15 a les 17h</description>
759
+ <pubDate>Tue, 07 Jul 2015 14:17:45 +0000</pubDate>
760
+ <guid>http://www.racalacarta.com/download.php?file=0707%2017h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
761
+ <enclosure url="http://www.racalacarta.com/download.php-file=0707%2017h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
762
+ <category>VERSIO RAC1</category>
763
+ </item>
764
+
765
+ <item>
766
+ <title>VERSIO RAC1 (07-07-15)</title>
767
+ <link>http://www.racalacarta.com/download.php?file=0707%2016h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
768
+ <description>Emis.: 07-07-15 a les 16h</description>
769
+ <pubDate>Tue, 07 Jul 2015 13:17:40 +0000</pubDate>
770
+ <guid>http://www.racalacarta.com/download.php?file=0707%2016h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
771
+ <enclosure url="http://www.racalacarta.com/download.php-file=0707%2016h%20(Dimarts%2007-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
772
+ <category>VERSIO RAC1</category>
773
+ </item>
774
+
775
+ <item>
776
+ <title>VERSIO RAC1 (06-07-15)</title>
777
+ <link>http://www.racalacarta.com/download.php?file=0706%2018h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
778
+ <description>Emis.: 06-07-15 a les 18h</description>
779
+ <pubDate>Mon, 06 Jul 2015 15:16:26 +0000</pubDate>
780
+ <guid>http://www.racalacarta.com/download.php?file=0706%2018h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
781
+ <enclosure url="http://www.racalacarta.com/download.php-file=0706%2018h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
782
+ <category>VERSIO RAC1</category>
783
+ </item>
784
+
785
+ <item>
786
+ <title>VERSIO RAC1 (06-07-15)</title>
787
+ <link>http://www.racalacarta.com/download.php?file=0706%2017h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
788
+ <description>Emis.: 06-07-15 a les 17h</description>
789
+ <pubDate>Mon, 06 Jul 2015 14:16:22 +0000</pubDate>
790
+ <guid>http://www.racalacarta.com/download.php?file=0706%2017h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
791
+ <enclosure url="http://www.racalacarta.com/download.php-file=0706%2017h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
792
+ <category>VERSIO RAC1</category>
793
+ </item>
794
+
795
+ <item>
796
+ <title>VERSIO RAC1 (06-07-15)</title>
797
+ <link>http://www.racalacarta.com/download.php?file=0706%2016h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
798
+ <description>Emis.: 06-07-15 a les 16h</description>
799
+ <pubDate>Mon, 06 Jul 2015 13:16:25 +0000</pubDate>
800
+ <guid>http://www.racalacarta.com/download.php?file=0706%2016h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
801
+ <enclosure url="http://www.racalacarta.com/download.php-file=0706%2016h%20(Dilluns%2006-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
802
+ <category>VERSIO RAC1</category>
803
+ </item>
804
+
805
+ <item>
806
+ <title>VERSIO RAC1 (03-07-15)</title>
807
+ <link>http://www.racalacarta.com/download.php?file=0703%2018h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
808
+ <description>Emis.: 03-07-15 a les 18h</description>
809
+ <pubDate>Fri, 03 Jul 2015 15:16:14 +0000</pubDate>
810
+ <guid>http://www.racalacarta.com/download.php?file=0703%2018h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
811
+ <enclosure url="http://www.racalacarta.com/download.php-file=0703%2018h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
812
+ <category>VERSIO RAC1</category>
813
+ </item>
814
+
815
+ <item>
816
+ <title>VERSIO RAC1 (03-07-15)</title>
817
+ <link>http://www.racalacarta.com/download.php?file=0703%2017h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
818
+ <description>Emis.: 03-07-15 a les 17h</description>
819
+ <pubDate>Fri, 03 Jul 2015 14:16:17 +0000</pubDate>
820
+ <guid>http://www.racalacarta.com/download.php?file=0703%2017h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
821
+ <enclosure url="http://www.racalacarta.com/download.php-file=0703%2017h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
822
+ <category>VERSIO RAC1</category>
823
+ </item>
824
+
825
+ <item>
826
+ <title>VERSIO RAC1 (03-07-15)</title>
827
+ <link>http://www.racalacarta.com/download.php?file=0703%2016h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
828
+ <description>Emis.: 03-07-15 a les 16h</description>
829
+ <pubDate>Fri, 03 Jul 2015 13:16:19 +0000</pubDate>
830
+ <guid>http://www.racalacarta.com/download.php?file=0703%2016h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
831
+ <enclosure url="http://www.racalacarta.com/download.php-file=0703%2016h%20(Divendres%2003-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
832
+ <category>VERSIO RAC1</category>
833
+ </item>
834
+
835
+ <item>
836
+ <title>VERSIO RAC1 (02-07-15)</title>
837
+ <link>http://www.racalacarta.com/download.php?file=0702%2018h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
838
+ <description>Emis.: 02-07-15 a les 18h</description>
839
+ <pubDate>Thu, 02 Jul 2015 15:16:18 +0000</pubDate>
840
+ <guid>http://www.racalacarta.com/download.php?file=0702%2018h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
841
+ <enclosure url="http://www.racalacarta.com/download.php-file=0702%2018h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
842
+ <category>VERSIO RAC1</category>
843
+ </item>
844
+
845
+ <item>
846
+ <title>VERSIO RAC1 (02-07-15)</title>
847
+ <link>http://www.racalacarta.com/download.php?file=0702%2017h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
848
+ <description>Emis.: 02-07-15 a les 17h</description>
849
+ <pubDate>Thu, 02 Jul 2015 14:16:24 +0000</pubDate>
850
+ <guid>http://www.racalacarta.com/download.php?file=0702%2017h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
851
+ <enclosure url="http://www.racalacarta.com/download.php-file=0702%2017h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
852
+ <category>VERSIO RAC1</category>
853
+ </item>
854
+
855
+ <item>
856
+ <title>VERSIO RAC1 (02-07-15)</title>
857
+ <link>http://www.racalacarta.com/download.php?file=0702%2016h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
858
+ <description>Emis.: 02-07-15 a les 16h</description>
859
+ <pubDate>Thu, 02 Jul 2015 13:16:21 +0000</pubDate>
860
+ <guid>http://www.racalacarta.com/download.php?file=0702%2016h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
861
+ <enclosure url="http://www.racalacarta.com/download.php-file=0702%2016h%20(Dijous%2002-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
862
+ <category>VERSIO RAC1</category>
863
+ </item>
864
+
865
+ <item>
866
+ <title>VERSIO RAC1 (01-07-15)</title>
867
+ <link>http://www.racalacarta.com/download.php?file=0701%2018h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
868
+ <description>Emis.: 01-07-15 a les 18h</description>
869
+ <pubDate>Wed, 01 Jul 2015 15:16:21 +0000</pubDate>
870
+ <guid>http://www.racalacarta.com/download.php?file=0701%2018h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
871
+ <enclosure url="http://www.racalacarta.com/download.php-file=0701%2018h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
872
+ <category>VERSIO RAC1</category>
873
+ </item>
874
+
875
+ <item>
876
+ <title>VERSIO RAC1 (01-07-15)</title>
877
+ <link>http://www.racalacarta.com/download.php?file=0701%2017h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
878
+ <description>Emis.: 01-07-15 a les 17h</description>
879
+ <pubDate>Wed, 01 Jul 2015 14:16:17 +0000</pubDate>
880
+ <guid>http://www.racalacarta.com/download.php?file=0701%2017h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
881
+ <enclosure url="http://www.racalacarta.com/download.php-file=0701%2017h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21610109" type="audio/mpeg" />
882
+ <category>VERSIO RAC1</category>
883
+ </item>
884
+
885
+ <item>
886
+ <title>VERSIO RAC1 (01-07-15)</title>
887
+ <link>http://www.racalacarta.com/download.php?file=0701%2016h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</link>
888
+ <description>Emis.: 01-07-15 a les 16h</description>
889
+ <pubDate>Wed, 01 Jul 2015 13:16:27 +0000</pubDate>
890
+ <guid>http://www.racalacarta.com/download.php?file=0701%2016h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3</guid>
891
+ <enclosure url="http://www.racalacarta.com/download.php-file=0701%2016h%20(Dimecres%2001-07-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
892
+ <category>VERSIO RAC1</category>
893
+ </item>
894
+
895
+ <item>
896
+ <title>VERSIO RAC1 (30-06-15)</title>
897
+ <link>http://www.racalacarta.com/download.php?file=0630%2018h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
898
+ <description>Emis.: 30-06-15 a les 18h</description>
899
+ <pubDate>Tue, 30 Jun 2015 15:16:16 +0000</pubDate>
900
+ <guid>http://www.racalacarta.com/download.php?file=0630%2018h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
901
+ <enclosure url="http://www.racalacarta.com/download.php-file=0630%2018h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
902
+ <category>VERSIO RAC1</category>
903
+ </item>
904
+
905
+ <item>
906
+ <title>VERSIO RAC1 (30-06-15)</title>
907
+ <link>http://www.racalacarta.com/download.php?file=0630%2017h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
908
+ <description>Emis.: 30-06-15 a les 17h</description>
909
+ <pubDate>Tue, 30 Jun 2015 14:16:24 +0000</pubDate>
910
+ <guid>http://www.racalacarta.com/download.php?file=0630%2017h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
911
+ <enclosure url="http://www.racalacarta.com/download.php-file=0630%2017h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
912
+ <category>VERSIO RAC1</category>
913
+ </item>
914
+
915
+ <item>
916
+ <title>VERSIO RAC1 (30-06-15)</title>
917
+ <link>http://www.racalacarta.com/download.php?file=0630%2016h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
918
+ <description>Emis.: 30-06-15 a les 16h</description>
919
+ <pubDate>Tue, 30 Jun 2015 13:16:15 +0000</pubDate>
920
+ <guid>http://www.racalacarta.com/download.php?file=0630%2016h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
921
+ <enclosure url="http://www.racalacarta.com/download.php-file=0630%2016h%20(Dimarts%2030-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
922
+ <category>VERSIO RAC1</category>
923
+ </item>
924
+
925
+ <item>
926
+ <title>VERSIO RAC1 (29-06-15)</title>
927
+ <link>http://www.racalacarta.com/download.php?file=0629%2018h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
928
+ <description>Emis.: 29-06-15 a les 18h</description>
929
+ <pubDate>Mon, 29 Jun 2015 15:16:12 +0000</pubDate>
930
+ <guid>http://www.racalacarta.com/download.php?file=0629%2018h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
931
+ <enclosure url="http://www.racalacarta.com/download.php-file=0629%2018h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
932
+ <category>VERSIO RAC1</category>
933
+ </item>
934
+
935
+ <item>
936
+ <title>VERSIO RAC1 (29-06-15)</title>
937
+ <link>http://www.racalacarta.com/download.php?file=0629%2017h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
938
+ <description>Emis.: 29-06-15 a les 17h</description>
939
+ <pubDate>Mon, 29 Jun 2015 14:16:10 +0000</pubDate>
940
+ <guid>http://www.racalacarta.com/download.php?file=0629%2017h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
941
+ <enclosure url="http://www.racalacarta.com/download.php-file=0629%2017h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21606818" type="audio/mpeg" />
942
+ <category>VERSIO RAC1</category>
943
+ </item>
944
+
945
+ <item>
946
+ <title>VERSIO RAC1 (29-06-15)</title>
947
+ <link>http://www.racalacarta.com/download.php?file=0629%2016h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
948
+ <description>Emis.: 29-06-15 a les 16h</description>
949
+ <pubDate>Mon, 29 Jun 2015 13:16:15 +0000</pubDate>
950
+ <guid>http://www.racalacarta.com/download.php?file=0629%2016h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
951
+ <enclosure url="http://www.racalacarta.com/download.php-file=0629%2016h%20(Dilluns%2029-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
952
+ <category>VERSIO RAC1</category>
953
+ </item>
954
+
955
+ <item>
956
+ <title>VERSIO RAC1 (26-06-15)</title>
957
+ <link>http://www.racalacarta.com/download.php?file=0626%2018h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
958
+ <description>Emis.: 26-06-15 a les 18h</description>
959
+ <pubDate>Fri, 26 Jun 2015 15:16:10 +0000</pubDate>
960
+ <guid>http://www.racalacarta.com/download.php?file=0626%2018h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
961
+ <enclosure url="http://www.racalacarta.com/download.php-file=0626%2018h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21593809" type="audio/mpeg" />
962
+ <category>VERSIO RAC1</category>
963
+ </item>
964
+
965
+ <item>
966
+ <title>VERSIO RAC1 (26-06-15)</title>
967
+ <link>http://www.racalacarta.com/download.php?file=0626%2017h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
968
+ <description>Emis.: 26-06-15 a les 17h</description>
969
+ <pubDate>Fri, 26 Jun 2015 14:16:03 +0000</pubDate>
970
+ <guid>http://www.racalacarta.com/download.php?file=0626%2017h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
971
+ <enclosure url="http://www.racalacarta.com/download.php-file=0626%2017h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21610109" type="audio/mpeg" />
972
+ <category>VERSIO RAC1</category>
973
+ </item>
974
+
975
+ <item>
976
+ <title>VERSIO RAC1 (26-06-15)</title>
977
+ <link>http://www.racalacarta.com/download.php?file=0626%2016h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
978
+ <description>Emis.: 26-06-15 a les 16h</description>
979
+ <pubDate>Fri, 26 Jun 2015 13:16:04 +0000</pubDate>
980
+ <guid>http://www.racalacarta.com/download.php?file=0626%2016h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
981
+ <enclosure url="http://www.racalacarta.com/download.php-file=0626%2016h%20(Divendres%2026-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21600392" type="audio/mpeg" />
982
+ <category>VERSIO RAC1</category>
983
+ </item>
984
+
985
+ <item>
986
+ <title>VERSIO RAC1 (25-06-15)</title>
987
+ <link>http://www.racalacarta.com/download.php?file=0625%2018h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
988
+ <description>Emis.: 25-06-15 a les 18h</description>
989
+ <pubDate>Thu, 25 Jun 2015 15:16:03 +0000</pubDate>
990
+ <guid>http://www.racalacarta.com/download.php?file=0625%2018h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
991
+ <enclosure url="http://www.racalacarta.com/download.php-file=0625%2018h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
992
+ <category>VERSIO RAC1</category>
993
+ </item>
994
+
995
+ <item>
996
+ <title>VERSIO RAC1 (25-06-15)</title>
997
+ <link>http://www.racalacarta.com/download.php?file=0625%2017h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
998
+ <description>Emis.: 25-06-15 a les 17h</description>
999
+ <pubDate>Thu, 25 Jun 2015 14:16:05 +0000</pubDate>
1000
+ <guid>http://www.racalacarta.com/download.php?file=0625%2017h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1001
+ <enclosure url="http://www.racalacarta.com/download.php-file=0625%2017h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
1002
+ <category>VERSIO RAC1</category>
1003
+ </item>
1004
+
1005
+ <item>
1006
+ <title>VERSIO RAC1 (25-06-15)</title>
1007
+ <link>http://www.racalacarta.com/download.php?file=0625%2016h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
1008
+ <description>Emis.: 25-06-15 a les 16h</description>
1009
+ <pubDate>Thu, 25 Jun 2015 13:16:11 +0000</pubDate>
1010
+ <guid>http://www.racalacarta.com/download.php?file=0625%2016h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1011
+ <enclosure url="http://www.racalacarta.com/download.php-file=0625%2016h%20(Dijous%2025-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21597100" type="audio/mpeg" />
1012
+ <category>VERSIO RAC1</category>
1013
+ </item>
1014
+
1015
+ <item>
1016
+ <title>VERSIO RAC1 (24-06-15)</title>
1017
+ <link>http://www.racalacarta.com/download.php?file=0624%2018h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
1018
+ <description>Emis.: 24-06-15 a les 18h</description>
1019
+ <pubDate>Wed, 24 Jun 2015 14:40:48 +0000</pubDate>
1020
+ <guid>http://www.racalacarta.com/download.php?file=0624%2018h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1021
+ <enclosure url="http://www.racalacarta.com/download.php-file=0624%2018h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3" length="8979957" type="audio/mpeg" />
1022
+ <category>VERSIO RAC1</category>
1023
+ </item>
1024
+
1025
+ <item>
1026
+ <title>VERSIO RAC1 (24-06-15)</title>
1027
+ <link>http://www.racalacarta.com/download.php?file=0624%2017h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
1028
+ <description>Emis.: 24-06-15 a les 17h</description>
1029
+ <pubDate>Wed, 24 Jun 2015 14:16:07 +0000</pubDate>
1030
+ <guid>http://www.racalacarta.com/download.php?file=0624%2017h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1031
+ <enclosure url="http://www.racalacarta.com/download.php-file=0624%2017h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
1032
+ <category>VERSIO RAC1</category>
1033
+ </item>
1034
+
1035
+ <item>
1036
+ <title>VERSIO RAC1 (24-06-15)</title>
1037
+ <link>http://www.racalacarta.com/download.php?file=0624%2016h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
1038
+ <description>Emis.: 24-06-15 a les 16h</description>
1039
+ <pubDate>Wed, 24 Jun 2015 13:16:06 +0000</pubDate>
1040
+ <guid>http://www.racalacarta.com/download.php?file=0624%2016h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1041
+ <enclosure url="http://www.racalacarta.com/download.php-file=0624%2016h%20(Dimecres%2024-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
1042
+ <category>VERSIO RAC1</category>
1043
+ </item>
1044
+
1045
+ <item>
1046
+ <title>VERSIO RAC1 (23-06-15)</title>
1047
+ <link>http://www.racalacarta.com/download.php?file=0623%2018h%20(Dimarts%2023-06-15)%20%20%20VERSIO%20RAC1.mp3</link>
1048
+ <description>Emis.: 23-06-15 a les 18h</description>
1049
+ <pubDate>Tue, 23 Jun 2015 15:15:58 +0000</pubDate>
1050
+ <guid>http://www.racalacarta.com/download.php?file=0623%2018h%20(Dimarts%2023-06-15)%20%20%20VERSIO%20RAC1.mp3</guid>
1051
+ <enclosure url="http://www.racalacarta.com/download.php-file=0623%2018h%20(Dimarts%2023-06-15)%20%20%20VERSIO%20RAC1.mp3" length="21603526" type="audio/mpeg" />
1052
+ <category>VERSIO RAC1</category>
1053
+ </item>
1054
+
1055
+ </channel>
1056
+ </rss>
1057
+ http_version:
1058
+ recorded_at: Sun, 09 Aug 2015 13:21:48 GMT
1059
+ recorded_with: VCR 2.9.3