Project

General

Profile

Bug #929 ยป diff.txt

taro, 2016-02-14 02:39 PM

 
1
Binary files src.gnu/icecat-38.6.0/addon-sdk/mach_commands.pyc and src.parabola/icecat-38.6.0/addon-sdk/mach_commands.pyc differ
2
Binary files src.gnu/icecat-38.6.0/build/mach_bootstrap.pyc and src.parabola/icecat-38.6.0/build/mach_bootstrap.pyc differ
3
Binary files src.gnu/icecat-38.6.0/build/valgrind/mach_commands.pyc and src.parabola/icecat-38.6.0/build/valgrind/mach_commands.pyc differ
4
diff -r src.gnu/icecat-38.6.0/Changelog.IceCat src.parabola/icecat-38.6.0/Changelog.IceCat
5
1,5d0
6
< 2016-02-03 Ruben Rodriguez <ruben@gnu.org>
7
< 	* Updated to v38.6.0ESR
8
< 	* HTTPS-Everywhere updated to 5.1.3
9
< 	* HTML5 Video Everywhere updated to 0.3.4
10
< 
11
diff -r src.gnu/icecat-38.6.0/debian/changelog src.parabola/icecat-38.6.0/debian/changelog
12
5c5
13
<  -- Ruben Rodriguez <ruben@gnu.org>  Wed, 03 Feb 2016 14:11:20 -0600
14
---
15
>  -- Ruben Rodriguez <ruben@gnu.org>  Wed, 27 Jan 2016 17:21:35 -0600
16
diff -r src.gnu/icecat-38.6.0/debian/Changelog.IceCat src.parabola/icecat-38.6.0/debian/Changelog.IceCat
17
1,5d0
18
< 2016-02-03 Ruben Rodriguez <ruben@gnu.org>
19
< 	* Updated to v38.6.0ESR
20
< 	* HTTPS-Everywhere updated to 5.1.3
21
< 	* HTML5 Video Everywhere updated to 0.3.4
22
< 
23
diff -r src.gnu/icecat-38.6.0/debian/copyright src.parabola/icecat-38.6.0/debian/copyright
24
2c2
25
< Wed Feb  3 14:11:15 CST 2016
26
---
27
> Wed Jan 27 17:21:30 CST 2016
28
Binary files src.gnu/icecat-38.6.0/dom/bindings/mach_commands.pyc and src.parabola/icecat-38.6.0/dom/bindings/mach_commands.pyc differ
29
Binary files src.gnu/icecat-38.6.0/dom/bindings/mozwebidlcodegen/__init__.pyc and src.parabola/icecat-38.6.0/dom/bindings/mozwebidlcodegen/__init__.pyc differ
30
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/bootstrap.js src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/bootstrap.js
31
11c11
32
< var { startup, shutdown, install, uninstall } = new Bootstrap(rootURI);
33
---
34
> const { startup, shutdown, install, uninstall } = new Bootstrap(rootURI);
35
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: break.js
36
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: dailymotion.js
37
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: facebook.js
38
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: flashgot-YouTubeSwf.js
39
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: metacafe.js
40
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: vimeo.js
41
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: youtube-formats.js
42
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/data: youtube.js
43
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: defaults
44
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: harness-options.json
45
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/index.js src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/index.js
46
19,24c19,26
47
< const _package = JSON.parse(_self.data.load("../package.json"));
48
< const allDrivers = {};
49
< const externURL = _self.data.url().slice(0, -5) + "node_modules/";
50
< // then extern drivers
51
< Object.keys(_package.sites).forEach((d) =>
52
<     allDrivers[d] = require(_package.sites[d]));
53
---
54
> const allDrivers = {
55
>     "facebook": require("./lib/facebook"),
56
>     "vimeo": require("./lib/vimeo"),
57
>     "dailymotion": require("./lib/dailymotion"),
58
>     "break": require("./lib/break"),
59
>     "metacafe": require("./lib/metacafe"),
60
>     "youtube": require("./lib/youtube")
61
> };
62
26c28,37
63
<     prefs["disable" + drvName] === false);
64
---
65
>     prefs["disable" + drvName] === false
66
> );
67
> 
68
> //ensure preferences match the state of disabled drivers
69
> Object.keys(allDrivers).filter(drvName =>
70
>     drivers.indexOf(drvName) === -1
71
> ).forEach(drvName =>
72
>     prefs["disable" + drvName] = true
73
> );
74
> 
75
62,63d72
76
<     var drvPath = externURL + _package.sites[drvName] + "/";
77
<     var scripts, styles;
78
66,67c75,76
79
<     scripts = common.inject
80
<         .concat((driver.inject || []).map(u => drvPath + u))
81
---
82
>     var scripts, styles;
83
>     scripts = common.inject.concat(driver.inject)
84
69,70c78
85
<     styles = common.style
86
<         .concat((driver.style || []).map(u => drvPath + u))
87
---
88
>     styles = common.style.concat(driver.style || [])
89
141c149
90
< exports.onUnload = (reason) => {
91
---
92
> exports.onUnload = function(reason) {
93
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/install.rdf src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/install.rdf
94
8c8
95
<           <em:version>0.3.4</em:version>
96
---
97
>           <em:version>0.3.3</em:version>
98
21c21
99
<               <em:maxVersion>43.0</em:maxVersion>
100
---
101
>               <em:maxVersion>39.0</em:maxVersion>
102
29,45c29
103
<               <em:maxVersion>43.0</em:maxVersion>
104
< </Description>
105
< </em:targetApplication>
106
< 
107
<           <em:targetApplication>
108
<             <Description>
109
<               <em:id>{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}</em:id>
110
<               <em:minVersion>2.35a1</em:minVersion>
111
<               <em:maxVersion>2.42</em:maxVersion>
112
< </Description>
113
< </em:targetApplication>
114
< 
115
<           <em:targetApplication>
116
<             <Description>
117
<               <em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
118
<               <em:minVersion>38.0a1</em:minVersion>
119
<               <em:maxVersion>43.0</em:maxVersion>
120
---
121
>               <em:maxVersion>39.0</em:maxVersion>
122
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: break.js
123
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib/common.js src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib/common.js
124
19,20d18
125
< exports.type = "site";
126
< exports.name = "common";
127
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: dailymotion.js
128
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: facebook.js
129
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: flashgot-YouTube.js
130
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: metacafe.js
131
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: vimeo.js
132
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/lib: youtube.js
133
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: locales.json
134
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/Makefile src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/Makefile
135
8c8
136
< 	find . -name "*.js" -a ! -name "flashgot-*.js" \
137
---
138
> 	find . -maxdepth 2 -name "*.js" -a ! -name "flashgot-*.js" \
139
10c10
140
< 	find . -maxdepth 2 -name "*.json" | xargs -n 1 jsonlint -i
141
---
142
> 	find . -name "*.json" | xargs -n 1 jsonlint -i
143
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/manifest.mf src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/manifest.mf
144
5,6c5,6
145
< MD5-Digest: vcu1XDiUWaeN1txoXPsvUg==
146
< SHA1-Digest: h3TUstyt7PVKltSEar8XrscX31w=
147
---
148
> MD5-Digest: 3CZKpd7ahCT81kRmeoqgZw==
149
> SHA1-Digest: Oc1Ig4LQZBBJ9qhZ/J7NIzXwAN8=
150
15,16c15,16
151
< MD5-Digest: 7bXGjs354WXP08z1LJmaUQ==
152
< SHA1-Digest: hBvzrYsRacNpTOCOH+GOhYBn2mE=
153
---
154
> MD5-Digest: gE+jXuKpPkTxUv6AL2Q+0w==
155
> SHA1-Digest: zJpzqwwkcqSyH1WTx95W5OVwAf8=
156
20,21c20,21
157
< MD5-Digest: D/q/C2DDsVeahbnmOVjILQ==
158
< SHA1-Digest: ZsPciQ8fnXB3SAspssHsN11dNaU=
159
---
160
> MD5-Digest: HOjkR7QIIXjQPk1jYs58Lw==
161
> SHA1-Digest: RxVAcn572CkaXY3rsxFvIVVl0JU=
162
25,26c25,26
163
< MD5-Digest: IsGCFb6Uy4oFlw9wmgMvRg==
164
< SHA1-Digest: sMDNfURRDw5fUqfU8vPudXHgbhc=
165
---
166
> MD5-Digest: O8EMb/Pvu1YkocCav1nEyw==
167
> SHA1-Digest: uZslA8OM6foJrLvzmAwDpj++dsw=
168
30,31c30,31
169
< MD5-Digest: 8XHXrTYj7Yr/kH9lOFIh+A==
170
< SHA1-Digest: 2jcu5xUmk0g4h52FoCCbA2EA04U=
171
---
172
> MD5-Digest: xxRAx+XLx0NLnwkT8R8tPA==
173
> SHA1-Digest: jiG7sIifE2PiFl+gbCi07N1lxI4=
174
42a43,47
175
> Name: data/break.js
176
> Digest-Algorithms: MD5 SHA1
177
> MD5-Digest: FHcsZl9Qe91hW/7B28cAkg==
178
> SHA1-Digest: P4o5B+pFXkcUyTcjR/EjVPN2NEY=
179
> 
180
48,113c53
181
< Name: data/video-player.js
182
< Digest-Algorithms: MD5 SHA1
183
< MD5-Digest: QaVP15oXFYBib7qhCa7Uhg==
184
< SHA1-Digest: 0o5gijudH3zYgut+Dm7h+MHJWw4=
185
< 
186
< Name: lib/common.js
187
< Digest-Algorithms: MD5 SHA1
188
< MD5-Digest: hInjHRbG7jPxdD1X3vhVNQ==
189
< SHA1-Digest: xZtZKOZ/r1tMuRRwMzDNFccdbVU=
190
< 
191
< Name: node_modules/h5vew-site-break/index.js
192
< Digest-Algorithms: MD5 SHA1
193
< MD5-Digest: rwVrP2t2FH8Ax1qAy0dGAw==
194
< SHA1-Digest: OSID3td3t2JjvrGBYxtLdl0FV1A=
195
< 
196
< Name: node_modules/h5vew-site-break/LICENSE
197
< Digest-Algorithms: MD5 SHA1
198
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
199
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
200
< 
201
< Name: node_modules/h5vew-site-break/package.json
202
< Digest-Algorithms: MD5 SHA1
203
< MD5-Digest: tRaiT1vfJkoCN4lLSI927g==
204
< SHA1-Digest: tv5TDRmdV/Z94EfcdlbS4gri0K4=
205
< 
206
< Name: node_modules/h5vew-site-break/data/break.js
207
< Digest-Algorithms: MD5 SHA1
208
< MD5-Digest: O9LMpALiYKeFhL3VuBSxQg==
209
< SHA1-Digest: 6aFNNK4CJQgXbguvdUm+QNfMQ/k=
210
< 
211
< Name: node_modules/h5vew-site-dailymotion/index.js
212
< Digest-Algorithms: MD5 SHA1
213
< MD5-Digest: sL3E24z5nFf83CyK2rqyVQ==
214
< SHA1-Digest: GTXnhs5FKHqmUpo7X14S9QhNzqU=
215
< 
216
< Name: node_modules/h5vew-site-dailymotion/LICENSE
217
< Digest-Algorithms: MD5 SHA1
218
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
219
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
220
< 
221
< Name: node_modules/h5vew-site-dailymotion/package.json
222
< Digest-Algorithms: MD5 SHA1
223
< MD5-Digest: Op0E8LRGM6+htpK8sSROpg==
224
< SHA1-Digest: 5ZVxsCI7/X9DpkRsN1Gc53VEKt4=
225
< 
226
< Name: node_modules/h5vew-site-dailymotion/data/dailymotion.js
227
< Digest-Algorithms: MD5 SHA1
228
< MD5-Digest: nQ9IqNQ2W0oStAKgk5/+tg==
229
< SHA1-Digest: eDh5P7Xamu9/kbF1Y5dMmeFT2PU=
230
< 
231
< Name: node_modules/h5vew-site-facebook/index.js
232
< Digest-Algorithms: MD5 SHA1
233
< MD5-Digest: GnHeB0nfSgNhGfQOikjaxw==
234
< SHA1-Digest: NDzyvPUjJNppeKVIdeQP1WjprI0=
235
< 
236
< Name: node_modules/h5vew-site-facebook/LICENSE
237
< Digest-Algorithms: MD5 SHA1
238
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
239
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
240
< 
241
< Name: node_modules/h5vew-site-facebook/package.json
242
< Digest-Algorithms: MD5 SHA1
243
< MD5-Digest: ANsh8O/ucasrc2Ldmq7mzg==
244
< SHA1-Digest: I1bCeNbA3J6j0lIHAz/zyug5fhs=
245
< 
246
< Name: node_modules/h5vew-site-facebook/data/facebook.js
247
---
248
> Name: data/dailymotion.js
249
115,116c55,56
250
< MD5-Digest: PZC+a8dsuzPzhqcu3CvJJQ==
251
< SHA1-Digest: ynsEseQ6XrMSFMJ48VdCq4ZIr80=
252
---
253
> MD5-Digest: 9QsYcMzrj1tL8wW/7bG5Dg==
254
> SHA1-Digest: LgyuBZytMRtvZ8x+smrqI9E/ufU=
255
118c58
256
< Name: node_modules/h5vew-site-metacafe/index.js
257
---
258
> Name: data/facebook.js
259
120,121c60,61
260
< MD5-Digest: 0apHZEHA5IHkUQAfZy/mMw==
261
< SHA1-Digest: TbX91sT0vJIB5Hrs5RrlAFSSFxY=
262
---
263
> MD5-Digest: VItINacQJvbb3wtkPu8o8Q==
264
> SHA1-Digest: zYMOQvETe6RBJybYc/ErviyavGI=
265
123c63
266
< Name: node_modules/h5vew-site-metacafe/LICENSE
267
---
268
> Name: data/flashgot-YouTubeSwf.js
269
125,131c65,66
270
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
271
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
272
< 
273
< Name: node_modules/h5vew-site-metacafe/package.json
274
< Digest-Algorithms: MD5 SHA1
275
< MD5-Digest: UMAyrfqS9WnE7cUryqLI6g==
276
< SHA1-Digest: YJ2V94j9842Gz8gFhhkM9q6vfJo=
277
---
278
> MD5-Digest: T+XZ+Rd72kqQauBCH92lDQ==
279
> SHA1-Digest: FqZ/r+c3xYHqFzMwYAQLk2OP9vU=
280
133c68
281
< Name: node_modules/h5vew-site-metacafe/data/metacafe.js
282
---
283
> Name: data/metacafe.js
284
138c73
285
< Name: node_modules/h5vew-site-vimeo/index.js
286
---
287
> Name: data/video-player.js
288
140,141c75,76
289
< MD5-Digest: UVBdG8rcmHKq7Gc1y96XFg==
290
< SHA1-Digest: GmY0Sulahyjg5hbqlTEo8m4g9Ek=
291
---
292
> MD5-Digest: QaVP15oXFYBib7qhCa7Uhg==
293
> SHA1-Digest: 0o5gijudH3zYgut+Dm7h+MHJWw4=
294
143c78
295
< Name: node_modules/h5vew-site-vimeo/LICENSE
296
---
297
> Name: data/vimeo.js
298
145,146c80,81
299
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
300
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
301
---
302
> MD5-Digest: zmNcKF1Swbah6zoT76rdOw==
303
> SHA1-Digest: 9mmwDqe6FRUdwpYD8sTwz9LDEKE=
304
148c83
305
< Name: node_modules/h5vew-site-vimeo/package.json
306
---
307
> Name: data/youtube-formats.js
308
150,151c85,86
309
< MD5-Digest: Kd7sn++DzZASGlNtSLpzQQ==
310
< SHA1-Digest: tMfQhVDerxAt6EGn0i1VCgiXCj4=
311
---
312
> MD5-Digest: ba8pxu4YWbMTFLI7u9nSww==
313
> SHA1-Digest: 8LdbGx/9NDqLQ9CndverrJzTRHA=
314
153c88
315
< Name: node_modules/h5vew-site-vimeo/data/vimeo.js
316
---
317
> Name: data/youtube.js
318
155,156c90,91
319
< MD5-Digest: 6KZUYhy2Je0kB8mprzVxpw==
320
< SHA1-Digest: DB6Zf7xz+RtK3IOZHJo1sn4iqq4=
321
---
322
> MD5-Digest: e8sjyWmwQH4By8KTou2qCA==
323
> SHA1-Digest: IKTdbDBdFlsMpiB2Lucw+sPu7KU=
324
158c93
325
< Name: node_modules/h5vew-site-youtube/.npmignore
326
---
327
> Name: lib/break.js
328
160,161c95,96
329
< MD5-Digest: 4zX/s2+kF8RmXkiloVDlLw==
330
< SHA1-Digest: VSgv/9p9nfldPV9uchUhn9xjveE=
331
---
332
> MD5-Digest: Gs/Etew95x/lD3IuZifl5Q==
333
> SHA1-Digest: 56GIkHz/2jJL9bEjPkLPdO1KVNo=
334
163c98
335
< Name: node_modules/h5vew-site-youtube/index.js
336
---
337
> Name: lib/common.js
338
165,166c100,101
339
< MD5-Digest: LkbFB0giuS55faYMPurWKw==
340
< SHA1-Digest: V7NWhrPz2lF/mPoJLfD5VdboFYI=
341
---
342
> MD5-Digest: CYP8cXv4SBDfwNklEF7UmA==
343
> SHA1-Digest: 5B8qBt1SCvK4GERTM/ggXyZLYiM=
344
168c103
345
< Name: node_modules/h5vew-site-youtube/LICENSE
346
---
347
> Name: lib/dailymotion.js
348
170,171c105,106
349
< MD5-Digest: ZdJvzC816moYGsd35C2x6g==
350
< SHA1-Digest: +nxNdbrjpkHR+atd8CgXW/uKaco=
351
---
352
> MD5-Digest: G7beTZLJ9bV8qd4TQKvSJA==
353
> SHA1-Digest: rg2Qw46iUoN3IjqEDdcklKTq3XM=
354
173c108
355
< Name: node_modules/h5vew-site-youtube/package.json
356
---
357
> Name: lib/facebook.js
358
175,176c110,111
359
< MD5-Digest: mfSeksoPHmnh3epYoVwfow==
360
< SHA1-Digest: 1KytZX+n4CQ4n6MPbbZkCVaycY8=
361
---
362
> MD5-Digest: MwgClTBiBe7LFJNcvKMjlg==
363
> SHA1-Digest: H9dSJUDuos2GyVC5dqLB/wMH+9Q=
364
178c113
365
< Name: node_modules/h5vew-site-youtube/data/flashgot-YouTubeSwf.js
366
---
367
> Name: lib/flashgot-YouTube.js
368
180,181c115,116
369
< MD5-Digest: T+XZ+Rd72kqQauBCH92lDQ==
370
< SHA1-Digest: FqZ/r+c3xYHqFzMwYAQLk2OP9vU=
371
---
372
> MD5-Digest: seLzlTcid+3/YXgxPdG1Tg==
373
> SHA1-Digest: zls6CmxZnpdcaPPP45RHJ81BDGc=
374
183c118
375
< Name: node_modules/h5vew-site-youtube/data/youtube-formats.js
376
---
377
> Name: lib/metacafe.js
378
185,186c120,121
379
< MD5-Digest: ba8pxu4YWbMTFLI7u9nSww==
380
< SHA1-Digest: 8LdbGx/9NDqLQ9CndverrJzTRHA=
381
---
382
> MD5-Digest: Kapqu2JlNqdfYVl1mzWZVQ==
383
> SHA1-Digest: Wk6FJJqfUJsTY4EsqXHkk9hMkmc=
384
188c123
385
< Name: node_modules/h5vew-site-youtube/data/youtube.js
386
---
387
> Name: lib/vimeo.js
388
190,191c125,126
389
< MD5-Digest: Slr1UmFmcifZ00qfcItyHQ==
390
< SHA1-Digest: MjrDIXD9mg/iaeRyL+1bDeNJZQU=
391
---
392
> MD5-Digest: jTJdcUeScUvccb3lLljoNg==
393
> SHA1-Digest: PFedn4/SHpnfvE32ZXSLJON1SYg=
394
193c128
395
< Name: node_modules/h5vew-site-youtube/lib/flashgot-YouTube.js
396
---
397
> Name: lib/youtube.js
398
195,196c130,131
399
< MD5-Digest: seLzlTcid+3/YXgxPdG1Tg==
400
< SHA1-Digest: zls6CmxZnpdcaPPP45RHJ81BDGc=
401
---
402
> MD5-Digest: F0G4vKBsjJ07Z8pkZI5+mQ==
403
> SHA1-Digest: 1w6nKvceNhIWU8LPJBLX6oqnDEY=
404
205,206c140,141
405
< MD5-Digest: PfxWNynox1BdzKJ26ASvmA==
406
< SHA1-Digest: ACIQ7/vXD9S5K5WnJbOavqiTXeE=
407
---
408
> MD5-Digest: 6lOpkYUWAsStXLMAqYehBw==
409
> SHA1-Digest: pGabm+cMpoBvLDdeVvgsOihEzLc=
410
Binary files src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/mozilla.rsa and src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/mozilla.rsa differ
411
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/mozilla.sf src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/META-INF/mozilla.sf
412
2,3c2,3
413
< MD5-Digest-Manifest: 4Zy4MGLXwZRJ7xbKsSoOjA==
414
< SHA1-Digest-Manifest: Wn+/RWpA9cjoIUaj3Desgvwu+qk=
415
---
416
> MD5-Digest-Manifest: Hml9wnbFfErJ0P5PjR7X/Q==
417
> SHA1-Digest-Manifest: I1SMUhwUPiokL1DHydczQRljGvY=
418
Only in src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: node_modules
419
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: options.xul
420
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/package.json src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/package.json
421
5c5
422
<   "version": "0.3.4",
423
---
424
>   "version": "0.3.3",
425
12,14c12
426
<     "fennec": ">=38.0a1",
427
<     "seamonkey": ">=2.35a1 <=2.42",
428
<     "thunderbird": ">=38.0a1"
429
---
430
>     "fennec": ">=38.0a1"
431
29,38c27,28
432
<   "sites": {
433
<     "youtube": "h5vew-site-youtube",
434
<     "vimeo": "h5vew-site-vimeo",
435
<     "break": "h5vew-site-break",
436
<     "dailymotion": "h5vew-site-dailymotion",
437
<     "facebook": "h5vew-site-facebook",
438
<     "metacafe": "h5vew-site-metacafe"
439
<   },
440
<   "dependencies": {
441
<     "h5vew-site-youtube": "latest"
442
---
443
>   "devDependencies": {
444
>     "jpm": "lastest"
445
Only in src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me: resources
446
diff -r src.gnu/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/spec/dailymotion.md src.parabola/icecat-38.6.0/extensions/gnu/html5-video-everywhere@lejenome.me/spec/dailymotion.md
447
6,8d5
448
< - [x] `www.dailymotion.com/video/<VIDEO_ID>`
449
< - [ ] `www.dailymotion.com/playlist/<PLAY_LIST_ID>/1#video=<VIDEO_ID>`
450
< - [ ] `www.dailymotion.com/<USERNAME>`
451
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/Changelog src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/Changelog
452
1,3d0
453
< Firefox 5.1.2 / Chrome 2015.12.16
454
<   * Ruleset fixes
455
< 
456
93c90
457
<   * Updates to Yahoo APIs, Fastly, VMWare, Netflix, Mashable, LinkedIn ,
458
---
459
>   * Updates to Yahoo APIs, Fastly, VMWare, Netflix, Maashable, LinkedIn ,
460
97c94
461
<   F-Secure, Dropbox, Courage Campaign, Box, Atlassian, Internet Archive,
462
---
463
>   F-Secure, Dropbox, Courage Campaign, Box, Atlassian, Internet Archvie,
464
230c227
465
<   * Add script to merge rulesets in Alexa Top 1M, thanks to Claudio Moretti:
466
---
467
>   * Add script to merge rulesets in Alexa Top 1M, thanks to Claudio MOretti:
468
480c477
469
<   * The toolbar button changes to indicate active rulesets:
470
---
471
>   * The toolbar button chnages to indicate active rulesets:
472
1498c1495
473
<   * Fix a bug in our redirection loop detection that was causing trouble with 
474
---
475
>   * Fix a bug in our redirection loop detection that was causing touble with 
476
1536c1533
477
<   * Patch for future compatibility with Request Policy:
478
---
479
>   * Patch for future compatiability with Request Policy:
480
1570c1567
481
<   * The new encrypted.google.com seems to require queries to be #q=thing
482
---
483
>   * The new encyrpted.google.com seems to require queries to be #q=thing
484
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/about.xul src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/about.xul
485
41c41
486
<       <label>5.1.2</label>
487
---
488
>       <label>5.1.1</label>
489
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/ApplicableList.js
490
31c31
491
<     // the reload fails, the resulting list is not erroneous
492
---
493
>     // the reload fails, the resulting list is not eroneous
494
76,78c76
495
<     HTTPSEverywhere.instance.https_rules.rewrittenURI(this, this.uri, function() {
496
<       // do nothing
497
<     });
498
---
499
>     HTTPSEverywhere.instance.https_rules.rewrittenURI(this, this.uri);
500
120c118
501
<     label.setAttribute('style', 'font-weight: bold; color: -moz-MenuBarText;');
502
---
503
>     label.setAttribute('style', 'color:#000000;');
504
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code: ChannelReplacement.js
505
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/HTTPS.js
506
42,88c42
507
<     var that = this;
508
<     // If the callback gets called immediately (not async), it will be called
509
<     // before the return from the function sets this variable, so we default it
510
<     // to true.
511
<     var callbackedImmediate = true;
512
<     callbackedImmediate = HTTPSRules.rewrittenURI(applicable_list, channel.URI.clone(), function(blob) {
513
<       if (callbackedImmediate) {
514
<         that.replaceChannelCallback(applicable_list, channel, httpNowhereEnabled, blob);
515
<       } else {
516
<         // If we can't redirect right away because we're waiting on some disk
517
<         // I/O to read the rules, we will have told the channel to redirect to
518
<         // itself and suspend, to insure it doesn't actually open while it's
519
<         // waiting for us to decide what to do. See
520
<         // https://bugzilla.mozilla.org/show_bug.cgi?id=1170197.
521
<         // Now that we're in the callback, we know the rules are loaded. So we
522
<         // tell the channel to go ahead and continue with the redirect-to-self.
523
<         // That will trigger on-modify-request again, and we'll wind up here
524
<         // again, except with the rules already loaded. We don't try a
525
<         // redirectTo here because it would fail with NS_ERROR_IN_PROGRESS.
526
<         try {
527
<           channel.resume();
528
<         } catch (e) {
529
<           that.log(WARN, 'Failed to resume ' + channel.URI.spec + ': ' + e);
530
<           return;
531
<         }
532
<         that.log(DBUG, 'Succeeded resuming ' + channel.URI.spec + ' ');
533
<       }
534
<     });
535
<     if (!callbackedImmediate) {
536
<       try {
537
<         channel.redirectTo(channel.URI);
538
<       } catch (e) {
539
<         this.log(WARN, 'Failed to redirect to self ' + channel.URI.spec + ': ' + e);
540
<         return;
541
<       }
542
<       try {
543
<         channel.suspend();
544
<       } catch (e) {
545
<         this.log(WARN, 'Failed to suspend ' + channel.URI.spec + ': ' + e);
546
<         return;
547
<       }
548
<       this.log(DBUG, 'Succeeded suspending ' + channel.URI.spec);
549
<     }
550
<   },
551
< 
552
<   replaceChannelCallback: function(applicable_list, channel, httpNowhereEnabled, blob, callbackedImmediate) {
553
<     var that = this;
554
---
555
>     var blob = HTTPSRules.rewrittenURI(applicable_list, channel.URI.clone());
556
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/HTTPSRules.js
557
71,74d70
558
<     // NOTE: Since rulesets are now lazy-loaded in FF, this will be called immediately
559
<     // after the ruleset is loaded, and doesn't give much startup benefit. We
560
<     // may want to switch these back so patterns are compiled immediately on
561
<     // ruleset load, for simplicity.
562
394,395c390
563
<       this.targetsLoaded = false;
564
<       this.targetsLoadingCallbacks = [];
565
---
566
>       var t1 = new Date().getTime();
567
402c397,417
568
<       this.rulesetDBConn = Services.storage.openDatabase(dbFile);
569
---
570
>       var rulesetDBConn = Services.storage.openDatabase(dbFile);
571
>       this.queryForRuleset = rulesetDBConn.createStatement(
572
>         "select contents from rulesets where id = :id");
573
> 
574
>       // Preload the mapping of hostname target -> ruleset ID from DB.
575
>       // This is a little slow (287 ms on a Core2 Duo @ 2.2GHz with SSD),
576
>       // but is faster than loading all of the rulesets. If this becomes a
577
>       // bottleneck, change it to load in a background webworker, or load
578
>       // a smaller bloom filter instead.
579
>       var targetsQuery = rulesetDBConn.createStatement("select host, ruleset_id from targets");
580
>       this.log(DBUG, "Loading targets...");
581
>       while (targetsQuery.executeStep()) {
582
>         var host = targetsQuery.row.host;
583
>         var id = targetsQuery.row.ruleset_id;
584
>         if (!this.targets[host]) {
585
>           this.targets[host] = [id];
586
>         } else {
587
>           this.targets[host].push(id);
588
>         }
589
>       }
590
>       this.log(DBUG, "Loading adding targets.");
591
405a421,422
592
>     var t2 =  new Date().getTime();
593
>     this.log(NOTE,"Loading targets took " + (t2 - t1) / 1000.0 + " seconds");
594
410,473d426
595
<   loadTargets: function(callback) {
596
<     if (this.targetsLoaded) {
597
<       callback();
598
<       return;
599
<     }
600
<     // loadTargets can be called multiple times before it resolves. We store a
601
<     // list of callbacks to call when done, and make sure we only actually do
602
<     // the query once.
603
<     this.targetsLoadingCallbacks.push(callback);
604
<     if (this.targetsLoadingCallbacks.length > 1) {
605
<       this.log(DBUG, "Skipping loadTargets, a query is already in progress.");
606
<     }
607
<     // Load the mapping of hostname target -> ruleset ID from DB.
608
<     // This is a little slow (287 ms on a Core2 Duo @ 2.2GHz with SSD),
609
<     // but is faster than loading all of the rulesets. If this becomes a
610
<     // bottleneck, change it to load in a background webworker, or load
611
<     // a smaller bloom filter instead.
612
<     var t1 = new Date().getTime();
613
<     var query = this.rulesetDBConn.createStatement("select host, ruleset_id from targets");
614
<     var that = this;
615
<     var count = 0;
616
<     this.log(INFO, "Querying targets");
617
<     // TODO: Store "this is pending" and resolve all pending once the whole
618
<     // thing is loaded.
619
<     query.executeAsync({
620
<       handleResult: function(aResultSet) {
621
<         try {
622
<         for (let row = aResultSet.getNextRow();
623
<              row;
624
<              row = aResultSet.getNextRow()) {
625
<           var host = row.getResultByName("host");
626
<           var id = row.getResultByName("ruleset_id");
627
<           count ++;
628
<           if (!that.targets[host]) {
629
<             that.targets[host] = [id];
630
<           } else {
631
<             that.targets[host].push(id);
632
<           }
633
<         }
634
<         } catch (e) {
635
<           that.log(WARN, "ERROR " + e);
636
<         }
637
<       },
638
<       handleError: function(aError) {
639
<         that.log(WARN, "SQLite error loading targets: " + aError.message);
640
<         callback();
641
<       },
642
< 
643
<       handleCompletion: function(aReason) {
644
<         if (aReason != Components.interfaces.mozIStorageStatementCallback.REASON_FINISHED) {
645
<           that.log(WARN, "SQLite query canceled or aborted!");
646
<         } else {
647
<           var t2 =  new Date().getTime();
648
<           that.log(NOTE, "Loading " + count + " targets took " + (t2 - t1) / 1000.0 + " seconds");
649
<           that.targetsLoadingCallbacks.forEach(function(callback) {
650
<             callback();
651
<           });
652
<           that.targetsLoadingCallbacks = [];
653
<           that.targetsLoaded = true;
654
<         }
655
<       }
656
<     });
657
<   },
658
< 
659
522,524c475,476
660
<   // return true iff callback has been called already, false if callback will be
661
<   // called asynchronously
662
<   rewrittenURI: function(alist, input_uri, callback) {
663
---
664
> 
665
>   rewrittenURI: function(alist, input_uri) {
666
537a490,491
667
>     var uri = this.sanitiseURI(input_uri);
668
> 
669
540c494
670
<       var host = input_uri.host
671
---
672
>       var rs = this.potentiallyApplicableRulesets(uri.host);
673
542,550c496,497
674
<       // NS_ERROR_FAILURE is normal for accessing uri.host. It just means that
675
<       // host is not applicable for the URI scheme, e.g. about: URIs.
676
<       // If that happens we quietly return null. If another exception happens
677
<       // we noisily return null.
678
<       if (e.name != "NS_ERROR_FAILURE") {
679
<         this.log(WARN, 'Could not get host from ' + input_uri.spec + ': ' + e);
680
<       }
681
<       callback(null);
682
<       return true;
683
---
684
>       this.log(NOTE, 'Could not check applicable rules for '+uri.spec + '\n'+e);
685
>       return null;
686
552,586c499,527
687
<     var that = this;
688
<     return this.potentiallyApplicableRulesets(host, function(rs) {
689
<       var uri = that.sanitiseURI(input_uri);
690
<       // ponder each potentially applicable ruleset, working out if it applies
691
<       // and recording it as active/inactive/moot/breaking in the applicable list
692
<       for (i = 0; i < rs.length; ++i) {
693
<         if (!rs[i].active) {
694
<           if (alist && rs[i].wouldMatch(uri, alist))
695
<             alist.inactive_rule(rs[i]);
696
<           continue;
697
<         }
698
<         blob.newuri = rs[i].transformURI(uri);
699
<         if (blob.newuri) {
700
<           if (alist) {
701
<             if (uri.spec in https_everywhere_blacklist) {
702
<               alist.breaking_rule(rs[i]);
703
<             } else {
704
<               alist.active_rule(rs[i]);
705
<             }
706
<           }
707
<           if (userpass_present) blob.newuri.userPass = input_uri.userPass;
708
<           blob.applied_ruleset = rs[i];
709
<           callback(blob);
710
<           return
711
<         }
712
<         if (uri.scheme == "https" && alist) {
713
<           // we didn't rewrite but the rule applies to this domain and the
714
<           // requests are going over https
715
<           if (rs[i].wouldMatch(uri, alist)) alist.moot_rule(rs[i]);
716
<           continue;
717
<         }
718
<       }
719
<       callback(null);
720
<       return;
721
<     });
722
---
723
> 
724
>     // ponder each potentially applicable ruleset, working out if it applies
725
>     // and recording it as active/inactive/moot/breaking in the applicable list
726
>     for (i = 0; i < rs.length; ++i) {
727
>       if (!rs[i].active) {
728
>         if (alist && rs[i].wouldMatch(uri, alist))
729
>           alist.inactive_rule(rs[i]);
730
>         continue;
731
>       } 
732
>       blob.newuri = rs[i].transformURI(uri);
733
>       if (blob.newuri) {
734
>         if (alist) {
735
>           if (uri.spec in https_everywhere_blacklist) 
736
>             alist.breaking_rule(rs[i]);
737
>           else 
738
>             alist.active_rule(rs[i]);
739
>   }
740
>         if (userpass_present) blob.newuri.userPass = input_uri.userPass;
741
>         blob.applied_ruleset = rs[i];
742
>         return blob;
743
>       }
744
>       if (uri.scheme == "https" && alist) {
745
>         // we didn't rewrite but the rule applies to this domain and the
746
>         // requests are going over https
747
>         if (rs[i].wouldMatch(uri, alist)) alist.moot_rule(rs[i]);
748
>         continue;
749
>       } 
750
>     }
751
>     return null;
752
622c563
753
<       try       { this.log(INFO, "(" + uri.spec + ")"); }  // happens for about: uris and so forth
754
---
755
>       try       { this.log(INFO, "(" + uri.spec + ")"); }  // happens for about: uris and soforth
756
638,647c579,584
757
<   loadRulesetById: function(ruleset_id, callback) {
758
<     var query = this.rulesetDBConn.createStatement(
759
<       "select contents from rulesets where id = :id");
760
<     query.params.id = ruleset_id;
761
<     var that = this;
762
<     query.executeAsync({
763
<       handleResult: function(aResultSet) {
764
<         for (let row = aResultSet.getNextRow();
765
<              row;
766
<              row = aResultSet.getNextRow()) {
767
---
768
>   // NOTE: This call runs synchronously, which can lock up the browser UI. Is
769
>   // there any way to fix that, given that we need to run blocking in the request
770
>   // flow? Perhaps we can preload all targets from the DB into memory at startup
771
>   // so we only hit the DB when we know there is something to be had.
772
>   loadRulesetById: function(ruleset_id) {
773
>     this.queryForRuleset.params.id = ruleset_id;
774
649,662c586,590
775
<           let value = row.getResultByName("contents");
776
<           RuleWriter.readFromString(value, that, ruleset_id);
777
<         }
778
<       },
779
<       handleError: function(aError) {
780
<         that.log(WARN, "SQLite error: " + aError.message);
781
<         callback();
782
<       },
783
< 
784
<       handleCompletion: function(aReason) {
785
<         if (aReason != Components.interfaces.mozIStorageStatementCallback.REASON_FINISHED) {
786
<           that.log(WARN, "SQLite query canceled or aborted!");
787
<         }
788
<         callback();
789
---
790
>     try {
791
>       if (this.queryForRuleset.executeStep()) {
792
>         RuleWriter.readFromString(this.queryForRuleset.row.contents, this, ruleset_id);
793
>       } else {
794
>         this.log(WARN,"Couldn't find ruleset for id " + ruleset_id);
795
664c592,594
796
<     });
797
---
798
>     } finally {
799
>       this.queryForRuleset.reset();
800
>     }
801
668,690c598,599
802
<   // Returns true if callback was called immediately: i.e., didn't have to go async.
803
<   rulesetsByTargets: function(targets, callback) {
804
<     // If the array of target hosts is not already loaded, load it
805
<     // (asynchronously). This should only happen once.
806
<     if (!this.targetsLoaded) {
807
<       this.log(INFO, "Loading targets");
808
<       this.loadTargets(this.rulesetsByTargets.bind(this, targets, callback));
809
<       return false;
810
<     } else {
811
<       this.log(INFO, "Targets are loaded " + this.targets["www.eff.org"]);
812
<     }
813
<     var foundIds = [];
814
<     var neededIds = [];
815
<     var that = this;
816
<     targets.forEach(function(target) {
817
<       var rulesetIds = that.targets[target] || [];
818
<       rulesetIds.forEach(function(id) {
819
<         foundIds.push(id);
820
<         if (!that.rulesetsByID[id]) {
821
<           neededIds.push(id);
822
<         }
823
<       });
824
<     });
825
---
826
>   rulesetsByTarget: function(target) {
827
>     var rulesetIds = this.targets[target];
828
692,701c601,611
829
<     this.log(DBUG, "For targets " + targets.join(' ') +
830
<       ", found ids " + foundIds + ", need to load: " + neededIds);
831
< 
832
<     var callbackImmediate = true;
833
<     function loadOne(done) {
834
<       if (neededIds.length !== 0) {
835
<         callbackImmediate = false;
836
<         that.loadRulesetById(neededIds.pop(), loadOne.bind(null, done));
837
<       } else {
838
<         done();
839
---
840
>     var output = [];
841
>     if (rulesetIds) {
842
>       this.log(INFO, "For target " + target + ", found ids " + rulesetIds.toString());
843
>       for (var i = 0; i < rulesetIds.length; i++) {
844
>         var id = rulesetIds[i];
845
>         if (!this.rulesetsByID[id]) {
846
>           this.loadRulesetById(id);
847
>         }
848
>         if (this.rulesetsByID[id]) {
849
>           output.push(this.rulesetsByID[id]);
850
>         }
851
702a613,614
852
>     } else {
853
>       this.log(DBUG, "For target " + target + ", found no ids in DB");
854
704,713c616
855
< 
856
<     loadOne(function() {
857
<       output = foundIds.map(function(id) {
858
<         return that.rulesetsByID[id];
859
<       })
860
<       that.log(DBUG, "Callback from rulesetsByTargets output = " + output);
861
<       callback(output);
862
<     });
863
<     that.log(DBUG, "Returning from rulesetsByTargets callbackImmediate = " + callbackImmediate);
864
<     return callbackImmediate;
865
---
866
>     return output;
867
722c625
868
<    * @return true iff we didn't have to go async to load rules
869
---
870
>    * @return {Array.<RuleSet>}
871
724,728c627
872
<   potentiallyApplicableRulesets: function(host, callback) {
873
<     if (!callback) {
874
<       this.log(WARN, 'Bad problem: potentiallyApplicableRulesets called without callback.');
875
<       return false;
876
<     }
877
---
878
>   potentiallyApplicableRulesets: function(host) {
879
730c629,635
880
<     var targetsToTry = [host];
881
---
882
>     var results = [];
883
> 
884
>     var attempt = function(target) {
885
>       this.setInsert(results, this.rulesetsByTarget(target));
886
>     }.bind(this);
887
> 
888
>     attempt(host);
889
738c643
890
<         return false;
891
---
892
>         return null;
893
743c648
894
<       targetsToTry.push(t);
895
---
896
>       attempt(t);
897
749c654
898
<       targetsToTry.push(t)
899
---
900
>       attempt(t);
901
751,757c656,659
902
<     var that = this;
903
<     return this.rulesetsByTargets(targetsToTry, function(rulesets) {
904
<       that.log(DBUG,"Potentially applicable rules for " + host + ":");
905
<       for (i = 0; i < rulesets.length; ++i)
906
<         that.log(DBUG, "  " + rulesets[i].name);
907
<       callback(rulesets);
908
<     });
909
---
910
>     this.log(DBUG,"Potentially applicable rules for " + host + ":");
911
>     for (i = 0; i < results.length; ++i)
912
>       this.log(DBUG, "  " + results[i].name);
913
>     return results;
914
777c679
915
<    * Check to see if the Cookie object c meets any of our cookierule criteria
916
---
917
>    * Check to see if the Cookie object c meets any of our cookierule citeria
918
793,813c695
919
<     var host = this.hostFromCookieDomain(c.host);
920
< 
921
<     // When checking for potentially applicable rulesets, we have to wait for a
922
<     // callback, because we may need to load the rulesets from disk. However, in
923
<     // practice this callback will always be run immediately, because the
924
<     // ruleset for the necessary host will have been loaded already for the HTTP
925
<     // request.
926
<     var result;
927
<     var callbackedImmediate = this.potentiallyApplicableRulesets(host, function(rs) {
928
<       result = this.shouldSecureCookieWithRulesets(applicable_list, c, known_https, rs);
929
<     }.bind(this));
930
<     if (callbackedImmediate) {
931
<       return result;
932
<     } else {
933
<       this.log(WARN, "Shouldn't happen: rulesets were not already loaded for host " + host)
934
<       // Default to securing cookies if we aren't sure.
935
<       return true
936
<     }
937
<   },
938
< 
939
<   shouldSecureCookieWithRulesets: function(applicable_list, c, known_https, rs) {
940
---
941
>     var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(c.host));
942
819c701
943
<         if (!(known_https || this.safeToSecureCookie(c.rawHost, rs))) {
944
---
945
>         if (!(known_https || this.safeToSecureCookie(c.rawHost))) {
946
859d740
947
<    * @param rs {Array.<Ruleset>} A list of potentially applicable rulesets.
948
862c743
949
<   safeToSecureCookie: function(domain, rs) {
950
---
951
>   safeToSecureCookie: function(domain) {
952
881c762,764
953
< 
954
---
955
>     // potentiallyApplicableRulesets is defined on hostnames not cookie-style
956
>     // "domain" attributes, so we strip a leading dot before calling.
957
>     var rs = this.potentiallyApplicableRulesets(this.hostFromCookieDomain(domain));
958
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js
959
17c17
960
<     if (charset !== null) { // use "null" if you want unconverted data...
961
---
962
>     if (charset !== null) { // use "null" if you want uncoverted data...
963
238,240c238
964
<   _splitName: function(nv) {
965
<     return nv.split("=")[0];
966
<   },
967
---
968
>   _splitName: function(nv) nv.split("=")[0],
969
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/NSS.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/NSS.js
970
27a28,30
971
> // Alias to reduce the number of spurious warnings from amo-validator.
972
> let tcypes = ctypes;
973
> 
974
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code: Thread.js
975
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content/code/X509ChainWhitelist.js
976
9,12c9
977
<   '007FDDA43F8F2C275CF3AE1D742A0DE86CFE1287B6FAE08F9676A8743E677255' : true,
978
<   '00AD891EBED89D8B1DE5893D32B98655479B79FAAF02D40BB933BBF726699446' : true,
979
<   '00D9377601C1210081CE743C3598E414B6BD2F47525132BE5E4CBA4650EE7C19' : true,
980
<   '00DBEAA57891E7972D7AE5F00425E309B1A08B8EE4218B24AE3FB50EA98AA864' : true,
981
---
982
>   '006014E5A5190652C3475AA099483A273989F403FDB282AAD77DB72397C274A8' : true,
983
16a14,15
984
>   '01B1568F4757D7222D2E2AB9FA13E7EBBEE1B5D622CB6FA3DC45D552C2086B4C' : true,
985
>   '01E42F89ABE23F6B00E5A35240F35DF38A861FADA04A0B07B6DA9FFA4B57075C' : true,
986
18a18
987
>   '02748B445F904F6C04BB42BB810B11B77BDE047350F3181DF40C3BA79D4DC89F' : true,
988
23c23
989
<   '02EE88738EA513E191ED7197DA80736330AAC72CD846B866683ECA283945113E' : true,
990
---
991
>   '02FB82CE0C8614F748564CB3D14C2BCDDFCF982D6187EC85E5A33B28E5340CF7' : true,
992
25,27c25,27
993
<   '0383B8763C6ED572306AB1253E433A3169F1EDF7078F57D07BC3461199BEF86B' : true,
994
<   '03E2027D68B6F8792C5E99FFA9221CE628E98F0D61346B99E8A2710BD29E1DE0' : true,
995
<   '03EF0B687FD2011C8607A83F5F06979C63FC4C905244344BCD85987A0E296133' : true,
996
---
997
>   '0369D2A3E853610AD59F13C199134850D43D07356DD83ED5A3C366DD6326C118' : true,
998
>   '043B68D81BB683927B40D3DAFC7F89C56F400F859DE68C0EA88AAB1FB1D75A27' : true,
999
>   '045B734DD0081F9504751492B6059B22BC201018436701D98832E3A9AF050ADE' : true,
1000
29c29
1001
<   '049E2533BBDE9D2DA0BDD71FB463A0D7D2908706999C63FDCEB4B812864E3091' : true,
1002
---
1003
>   '04BE558E6D064E92B741B3C551CFE1F38462EF3A08AC56470894D1A80278AD5E' : true,
1004
31a32
1005
>   '052AEDFBE22BDAB88C89277692F4510A2605F64112E3024EE508A92B2D0E71CC' : true,
1006
33a35,36
1007
>   '055C88BD28194042771FF813973E086A30710231DB219FF377B79FA075E7F2AD' : true,
1008
>   '0562EA3C474A2003D2CF45418458B126AC9CBF29151CCA9B6C4A5E7AB0279CAD' : true,
1009
35,36c38
1010
<   '05C5F3A4C0C5F676DFCA32690BBCE8A7F41D7D6C2438D9AA1F94F886E3015CB9' : true,
1011
<   '061B58EED7864DD73B40146FB4EB9656CBD256F6C10A07C3AC47860150B14948' : true,
1012
---
1013
>   '06183C90C1DCDC3E9340477D37DC231361321A9960C1948E92D1A175A1500A08' : true,
1014
38c40
1015
<   '064A8AF7F078CF04C63643298C3DA278EECA283CE11E3F34F3AB851AB89B5237' : true,
1016
---
1017
>   '06808645F29D708E4C31AC40FA00000733238E10A56D2067AA62803C9736E923' : true,
1018
41,43c43
1019
<   '06EA4798A8B6B73ACB72B15DD8D71D6D6541975EA01B6CCE95B92DDE7C0312F7' : true,
1020
<   '06F072A3D91411EAFF93F070B499A88B082E745A2E369567A6DDAAE227B2E195' : true,
1021
<   '06FB76F31639CCDDF599ADEB5E7CE9A475468C68B305442E99A067D09A89DDD0' : true,
1022
---
1023
>   '073B1FDF3C2009FD1E4201F3490526B49F66CD11D683A70A8D5B8A9E6E4EBF64' : true,
1024
44a45
1025
>   '077495BFAEEBF5E62CEA015EDCE70CE78AF13C813920FD9D4AB72C999F60D4DC' : true,
1026
46a48
1027
>   '07C228652318F79E189338C3704D4E6329632563103B494C5116C53343A073FA' : true,
1028
48a51
1029
>   '081B43CA6CFFA952AF4C08D1335449BCA854BE5CE2C555783A0900A7867E6120' : true,
1030
50c53
1031
<   '088B1B9C85C5237A785E56C277962D8901D994350403FCA667645A0321EE1754' : true,
1032
---
1033
>   '08DC876F1AE5A29F9E8B6CA628966C6FAFD1E474C3207A78792D4AA4D5C7EF9C' : true,
1034
53,54c56
1035
<   '097D2DB6895EA5C53529BC38C1258E1461BE15135A9543BDDF5918EF5B5464C9' : true,
1036
<   '0AD7BEAF898E621703921886F7EA20EB4B337D03CF968EC45E3B1A234B2D707E' : true,
1037
---
1038
>   '0B0F28E1CE5038D9C7CD8FA557669A9E78FA0BC4BE9DBFB0BE6C96462E2CC065' : true,
1039
59,63c61
1040
<   '0C5C73A428C4601BF261EE2C36DF0D2259CBF2471E25A7B43F52F06C63059195' : true,
1041
<   '0C956E47F2CF8AADB345DBC858E3AB4AA37E48B7930B84BF7AA1A0C1B19A1C8F' : true,
1042
<   '0C9D6EF00C60807C04A1BF61E8C1E28DF2A628CB7CCA3E15593266682736588D' : true,
1043
<   '0D6FFBC5B8DD431A6C0FA282F1ABE0898E4846B5F82723E11E484F1A61931C18' : true,
1044
<   '0D98DAB031428D38C96C714C90F0E2ACC9A1767FDC6A953D590928683E8BF8C4' : true,
1045
---
1046
>   '0C5B47050FC50334C9C440D6121486F466BB1D2444232ADCC21BC143CB1A79D8' : true,
1047
66c64
1048
<   '0DC21B5C66F7A421406E2FF43676B6D7013C6115232AEE0CFD25D70E7D4C2625' : true,
1049
---
1050
>   '0E3BD8F8BC06B326EF672A487855F0E9752EF7D4A2A913A41374088B6215EA44' : true,
1051
67a66
1052
>   '0E7CFF7FA1B013E7EFA9407E167C8255BCB1976C2CB3144C00C39B6DFB8CE21B' : true,
1053
69a69,70
1054
>   '0EF8FA5AAD4BACDB842959378F18935855B027B0BADDCBDEADC9CC958C4C603B' : true,
1055
>   '0F01342B195E54DA8265E4B3928A2692F6CF05F41CB85152A8122FE6E914C67B' : true,
1056
75,77c76,80
1057
<   '1030FABD87581CC2360917E4B4D94B88AF59A0E4FBFBC796F36DEA520198CD28' : true,
1058
<   '103A6A4F018518AA6454CF8C8D18D7DA301A3F3C9E4C3C7FC2C3EC23E9D4443E' : true,
1059
<   '1129CEBCB9F0237509FFE00D10AB5A4B9F9C29C1E22777DC621F7B7C94B4EFAC' : true,
1060
---
1061
>   '105993C03E3F5C7E94D5A78242FCD6D0C7B7E5104295F8275752D7C6908428B8' : true,
1062
>   '1089E7487C08428CAACCCDBA18B8982049B6A915FBA4598E953395B4493CC358' : true,
1063
>   '10B8161FF4FC64020AD40EA57306CFC5010BF9682B18DEEF2544DD4D5DF0466E' : true,
1064
>   '10E65A16F0DEE4B2499EBD5C96CD416BD2713C73A422F3BDBA81899C736437C5' : true,
1065
>   '1134E778B42A8DBD01C547E9676F5294D4B16297DB8F6A512394F77B21F22052' : true,
1066
79a83
1067
>   '11D4CF9A8FEC8EB2ADC4EA3B4E7036BB041BDCF45B5563A38F409CC8F6E531C1' : true,
1068
81,82d84
1069
<   '12160CB58782201AF8F946F3911DF89177566E67C2AD7A2CF33107C89C65DF5F' : true,
1070
<   '122789E068A64AFE76989BEC2FC264EE933B6FB31445450E492E37663C083FFE' : true,
1071
91c93
1072
<   '14919EA335FB4C65A5314A820ED289B0C8697E0124E6FC92DFCA84FBD56B2D35' : true,
1073
---
1074
>   '1491DCCE9B3E3F5EEA92C26671244EB7203C30F539EF5B6131459F389A0D2CD8' : true,
1075
94c96
1076
<   '15178AD6DD39B91835771E8C2193D0A96CFE82F913A2C10C03144B37DDF45CA0' : true,
1077
---
1078
>   '150B877BB614A98F2186C3B0978D190C77A605146A6A569036728F544520CDC8' : true,
1079
96d97
1080
<   '15508FBCC229C8D8917DFF5951FBC2BF0840866D4BCA8B406A63EEAC21221D79' : true,
1081
100,101d100
1082
<   '1624DBB95D0B9786B98A4D7F0B7CDD8FF28754C5EB6673CAD7305B1B5B8F8826' : true,
1083
<   '162735074DC673F1ADBAFC8A4202BC1C25549EAA743063B9DCB39B37206C642E' : true,
1084
104,106c103
1085
<   '16A2F0D309D7E5CC00E5DFBDE3DC5DB21532F7E5ECF93E18554698374A5B5C2A' : true,
1086
<   '16C84150B3F3733B9D898ED4F57B4204E8ED00ED1147C06335670DA94CA2E2D7' : true,
1087
<   '16E2B54FD0674D40BFAD5C38803F7563CECDB022DBDCE1F282E1CD5DFDA5B35A' : true,
1088
---
1089
>   '1713C91C21F442044156AAD0A65E96A4C0020B2F765492A1431C6ABC3AF67D96' : true,
1090
108,111c105,106
1091
<   '1781FC3318F87AA70A6762F2A6A65D5F5DDCDE992DED94D110EB85A4745E9838' : true,
1092
<   '178437C1DC169BA86687755E982E2CAEADE216ADD8A163157614A66F34325FDE' : true,
1093
<   '178481982D21A3F3AA8DBA7EA0F58124E69BACAA81B2EE4D33FF5EBBFCD8D87B' : true,
1094
<   '18072A06AA04215C18A6DDEF2B57BBFC054A4B3A50CBC2648515BB715B582F23' : true,
1095
---
1096
>   '171F671393FB5CF2856957CB6925964B3C328E79EAF083DB15DE3D52233D6268' : true,
1097
>   '1765ACDC57A9EEDE87E6573443C7EBC42B17E012FE153D6D7158402D5CF9365C' : true,
1098
113c108,109
1099
<   '19230A5E183CB5DD90409C54F01075BB43D5608CE9C322EA3CA3724144FE03B6' : true,
1100
---
1101
>   '18C1218D9ED6A609650AADB754644377914C34E7C35F305D12861D7C28BDBB80' : true,
1102
>   '18D46E40DC2A1F815A02742F6AAB8CCCB80BABB108B349D2E875762F7D80B2CC' : true,
1103
116a113
1104
>   '19EA658B0817FBEDC5742659375F2BE78A5C76532A516F4687C6033562FAE9D5' : true,
1105
117a115
1106
>   '1A483DB77B1FD7D997B7044556C59DD6893641CC7F92178D5346394C2E522ACC' : true,
1107
120d117
1108
<   '1AAC19B1D8BBA8A33D43E739B1112E89A5E041BCA24ABCE4B13E0B1CFDEF6DFD' : true,
1109
122d118
1110
<   '1B4CC90A088C12699F4EFD7103B930FC762CF0BB1CDBE2D652AFC8CA8924C3E6' : true,
1111
126,127d121
1112
<   '1CCFC1F41255B860F2231D11672FFC1AE32D9CEAA341139C2B472A0EA9CB426E' : true,
1113
<   '1CE75CF38E7A5BB9C7C18202C97BFD74E79B3073B1FB6B2BBDB33E78BD22E6B5' : true,
1114
131a126
1115
>   '1DB7BCE9E799B17DD372C52C9BAA4B213F041B697880932F8AA93D8B609DBBEE' : true,
1116
132a128,129
1117
>   '1E51AC35C0CF103BB39F51DBC7096C53D1F3A255DC15A473B5882CC03C266198' : true,
1118
>   '1E5D810BCB8DA3AF393761C59CC88D22669ECB7D4F926760BE1EC6CD83E60765' : true,
1119
135,136c132
1120
<   '1F50A8F65E8256363E2710E05BBADE0FD84882DF8D7C5B12A92FC51B4643E4DC' : true,
1121
<   '20226C095C430BD6AE483B9806E0C32296B0819273076F35F65B6A52FDFEE19B' : true,
1122
---
1123
>   '200F113FB8BE9CD93DCF38AF69F714D686AE4D227572F482F774574A5CCFA6DB' : true,
1124
137a134
1125
>   '20BFFF5C6EF0AB849F78A1259C766EFF0FE4652DF02731E4F8408B1E27897932' : true,
1126
140a138
1127
>   '20F5CF34D9A134A8920507B12EB84CB24C2F09152FE9B78FDADF57D892BE79E1' : true,
1128
144a143
1129
>   '21C612A4E2CD066893391249E3C4DF22613E9DA5FF37690E3F806AA708B0401F' : true,
1130
145a145
1131
>   '21D70F62B14A3B2175742DB9F3C49999B67C15D0FF8ACA95B0C6A5393E043FA1' : true,
1132
149d148
1133
<   '225E3BE43AB71213287128F76D5DE651719EF5C79F946D5A8CB04C44FEA86449' : true,
1134
152,154c151
1135
<   '23E080919FCBCDBCA08FBA3968559D1D3A5E785802976E27126A25BB7D9958B6' : true,
1136
<   '23E4D77EC58ED1F674A96FD173C4AFAE53275B67EBDDAEF182855A3AC14FA8B5' : true,
1137
<   '23F00AC8958BF1466784068A5CC7E2179988F1E73446955136DCBBF756CC2171' : true,
1138
---
1139
>   '240968FE922EFB9937AF8923AA4F0478D7F679937B9FA9BC1A2B1DF18994B9F8' : true,
1140
156,157c153
1141
<   '2486367AC0F68DAA6E2BAB0B01CC6B3EEA3496023B3618DA73DC303B520AED8B' : true,
1142
<   '24DFBC07031235121BEBA97AB5A061AAFCD8AAEB2145820A78EB0980E5111E02' : true,
1143
---
1144
>   '2518D06777FE96E9D7D1B0D531149A5862177805443AC9D271BBCFEC660ACFC2' : true,
1145
158a155
1146
>   '261DD192486C36B9BF5DC0C4140F670FDD2BC62EA80C64123D827B5F32E0190B' : true,
1147
161d157
1148
<   '268343ADC21A53E71BD790E19507760E1F7F09B7C51E088E39DD0079C65AAAF7' : true,
1149
163d158
1150
<   '26CFAA69F0B2C35461B8F80F2A0537AE95C677F900E1B13CA977D79C06820254' : true,
1151
168c163
1152
<   '278480669CEE2AB798934F06B963B68D25C0A276CA3EC4E523D2299CE01C4A4F' : true,
1153
---
1154
>   '27893DE92514608F647A44E85314B90F983BD7E6BCD6CE9BE428FA52EEE34DD9' : true,
1155
170a166
1156
>   '28445F7C648AB6025EB469E9C5FD10C6C8D0D21B6A20F078854EFF406C55D3F7' : true,
1157
171a168
1158
>   '286C62823B119606F33D5761CF39C86D4DFBC1531AC399969455CA227344D5C7' : true,
1159
173a171
1160
>   '28F5AFFD30157F1A5DE7CB914129A6BCA4BD8EBC41A61841E1033C512F78E68B' : true,
1161
178d175
1162
<   '2A66B5579421025EC719858E2D80DDBBE02243073DE27DFC7AECC676B0899589' : true,
1163
180,181c177
1164
<   '2ADD4406064A5EBBD98A9D53051A0FB086A5D032655C12F503EA73C8179C783D' : true,
1165
<   '2B059B135DC85869AFA0F2BB76122D71B97DF5EF2C87669085646D98CF08213B' : true,
1166
---
1167
>   '2AE917E3AB4B867883088BCFFED53EBEF9F87988C77AE47FE325547B181931A1' : true,
1168
183a180,181
1169
>   '2C01A7027A6FCCB3EF0B70F134229605465295EE1249F5A582D04CD82689BFC9' : true,
1170
>   '2C43EC0374BC603A1B191B88ADBCD5C1A0409120427995C2684A1590C7AB1432' : true,
1171
185c183
1172
<   '2CB5C98C4A0D8A9EE15CC49CB83490CE552677BF353A0FE7AAF1482A8BF8C012' : true,
1173
---
1174
>   '2CB02C933CD41CDB146CA0256A99AE53D9320BAFBDDE82EB24891AF68BC6E19B' : true,
1175
189,190d186
1176
<   '2D375C90CC502EA17D4FCBE8EF35BF7E07A84B6B94EC7AC78613C623DD765E74' : true,
1177
<   '2DAE8835F42B7AE9A44C8CC72F12D750EDD8C5AA678D98CEAAE334BC602F0C58' : true,
1178
199d194
1179
<   '2FABB733337C02FC7D79E61202EC0FF7115DCEE66134F5F8823EE61CB7000005' : true,
1180
201d195
1181
<   '2FC3524D85A62187238D399692A116C52E4640DD29204B12F991441B7F01E4E6' : true,
1182
203c197,198
1183
<   '30547BCD70F47CABBDE76FDF5538C39D1894B49CC72B0A8BD07250A65E2437F9' : true,
1184
---
1185
>   '300B5DFEFE98F5280E47725FE63D7A0967CA022E4CF3531023A3969867677C6E' : true,
1186
>   '30354519FFD4794257A7EBEDB0D47DEC9A547B4E7213199000F41EB65C233EF7' : true,
1187
204a200
1188
>   '305D58D32D2FBAA00A386E3BCCE2202522B78C6B10E3D83C6A7402706ADEB4F6' : true,
1189
206d201
1190
<   '307483FC4C0D7608C2B6FC2DD068EDB1D686085586C4CA4284791294FC664D6F' : true,
1191
208a204
1192
>   '309DBF5FE6C52E6C7143E63BA07B9FE59D4ED38944409ECBECBDD74ACDE4E78E' : true,
1193
210d205
1194
<   '311646C51E3AA0B2E8022B6B1D95E83814131B16921B3B38DA1ACA9518AD4602' : true,
1195
213,214d207
1196
<   '322EC261687A3829C2C0F1FF70B3E6956F5EC01497F58A422A099521BC236D24' : true,
1197
<   '323C8E2033ADE1E8793BFDB767213691270543CF88FD6356194E5A8E87A755E6' : true,
1198
216a210
1199
>   '32707DD6FF2DAE577C4097176D936DE4E46E5CF428B0831D12574128BBFF6309' : true,
1200
222,223d215
1201
<   '338CC51C8910ACF7DC6CBC3AB6F2E288D38A7656CD78BF22C57745EE3146BDF0' : true,
1202
<   '3394F2FF8A20D115C929711B75D89260AB3798B93A559CC8BFFBB6A2F0463D12' : true,
1203
225a218
1204
>   '34535CB0A54193C144158D23C5A7F6F0F448FDD8EB9C21542A1203BB66BB8144' : true,
1205
226a220
1206
>   '350123506BA002EA62350E82CFEC1DA7BF24B405C4160EF1BF4C445F7DC31757' : true,
1207
228c222
1208
<   '3572DCF086FCEFED230B4D1B47E73DF410A5C775BA3BC9DC2681204F2E980BC4' : true,
1209
---
1210
>   '359BA4063DD43F04725A67F7E425EC48A593838AC97328374F83A31FFBB1EBF7' : true,
1211
231a226,227
1212
>   '3757DF53FF77E5BF111290CE7F03B821455E2D1D7B70033F649D7B60ED8D602B' : true,
1213
>   '375A5FEFE06518B0BFD2CE02034E185A44118CA92BEC6FE2D5809762C89E8C67' : true,
1214
234d229
1215
<   '37F9EA077605A59865D6CE500A20AAFB318666DD42AE9B17FD10DF4C4DF4D157' : true,
1216
237,238d231
1217
<   '388FDEE7D1F4001D828D2092BBEACF16E5D50375BC16FBF1BA058917BFA03C1F' : true,
1218
<   '389F1D4E628ED38863C27EB889725AE154D942FE62675E6435256BB4A4EA4D3B' : true,
1219
241a235
1220
>   '3917E4EF55DFBA1A48DF46B693E2E72D708B7B6146C8686C5B3F94FF8B3704FC' : true,
1221
243c237
1222
<   '3955C196410B13A2BE4CE66E7CA1238F139DB5F00E2DF2997CD83903BA064B4F' : true,
1223
---
1224
>   '3958BB2CE60148D4CDAE6266E4E04A6356E00B693621A4E9E05FC78C9709EF33' : true,
1225
248,249d241
1226
<   '3A694CA4161AD11D5C049313B226513207F5FE4C8966F6886F7B49298494C835' : true,
1227
<   '3AA33F69018FDFEE33875D0690C26D0CBDBED363252891E02592E0F2E2E1EC93' : true,
1228
252d243
1229
<   '3B1CE26F0C0E4393AEAD1BEFD39546A60E52ED5E52727AFEA827E27CA20453F6' : true,
1230
254a246
1231
>   '3BB4AB8E09B6EFC71B2B292A489372337E48085BCC4C08431D090D63C8920C78' : true,
1232
255a248
1233
>   '3C49B9DC9307C6B33E0DBE135836504ACB9F6204B7172A412C28E797E56CA02A' : true,
1234
258,259d250
1235
<   '3C9E6298F6FC43F504BBBDD12ECC94B4BF47947775FB629D1E1683D8D5AA6A8A' : true,
1236
<   '3CB171EFB062C3F0AC1CBF88CCF28B562B382A5EE096BB48394B16AEE1623F82' : true,
1237
267a259,260
1238
>   '3E5CFCFEB58445BB4A2C7D31BECCD7D28302E69396E3BA6F7DD8FE5AA11DFFD2' : true,
1239
>   '3EE396E9C7E97016AFACE8285C152EC6781728AFFD747291AAA596D573C6ED5E' : true,
1240
270c263,265
1241
<   '3F56CDF75403392B96E7DA06DEB55C70E8D9166ED6FF6B84D7EC4C176157E6B0' : true,
1242
---
1243
>   '3F933B11C350C08B98993CBD045F11249CB355ADAA8FC405B9B3AAB0CBC72F7C' : true,
1244
>   '3FA41F7E559B84FA6918FAD6709B5026B05A1C1AC589049A4D5F05F3A6B7D65B' : true,
1245
>   '3FC8022D0C28EBFD45DC1D07E14F9E83F0CAD2E7ECEDBFDB991E01EBF2400F54' : true,
1246
271a267
1247
>   '3FCBCC65096D7D731244167CCEAA21757E56D6EFC05A632AB3E062643E5B380F' : true,
1248
273c269,271
1249
<   '403F573E7CA3226C59F2AE1CE93EB0EA27FBC8E8A3EA711214FA21DFA6FF0262' : true,
1250
---
1251
>   '4007AA6804EBD54CF48E514FC8BE08DE5BBBE5E6536D678DAC71DE0C05D05B07' : true,
1252
>   '40812953C19613BA9042911FFFEAEE1C00A952E5D97D358B6603AB7DB69C867C' : true,
1253
>   '41717287E2E15F9E79F144B822458F9DBD930C194668167C06B87128E9C21042' : true,
1254
275a274
1255
>   '41A4B72E197905E02DA1199B4B9D2B20CA9B1502151A14FE19D8470FCDF60E0C' : true,
1256
279,280d277
1257
<   '423D0D4DD3D4B507C4115C46321A9B0BE3B9D7224DF626D2027A30FE682099DE' : true,
1258
<   '4245AEAD44ABC8177230DB36491E58FE885773DB0D043E24412A8BF6262D506A' : true,
1259
282c279
1260
<   '42F0C6BD144E105B3D14A68E267DDFCAAF76C95CFA265B187480EAB83FAB9215' : true,
1261
---
1262
>   '42D891E625A2FE563C10EC705A036928A9EED088915D480F5DDEDBC4BB35A557' : true,
1263
284,285d280
1264
<   '436A3291C05BB22CBED875AF7642839CC42E7C0BD534AA6698AF162F790F90BA' : true,
1265
<   '437B07B7934374CFEB2F61FB1B9A764548A53C9255F053C59E236CDC6B89B839' : true,
1266
286a282
1267
>   '448771ECDB6FF9B0B1A817E6C23048CAC06987EE2A6FCB6B84A6F0A75D7DAA6E' : true,
1268
290,292c286
1269
<   '4582537553F4CE6DAFA6C46939EF567629506C16E76A9F058E2DB3B2435B272D' : true,
1270
<   '459F25329680CC7589904EFE8F94F17880AA9DF2BA9408645BC9370DAA937471' : true,
1271
<   '45A2CDAA5DFAFF670425706B6543FBE161BAB6843A156A1D54F340BD8CB87970' : true,
1272
---
1273
>   '45C9985056B6629C3B4566E54648AE5DC504ACDA5569CE68023C39D9E554A217' : true,
1274
300,303c294,296
1275
<   '46565A05B815225FB600CF1CF1EE4BDBA5A7D39A7ECF45210FEF3C1FCC2B8B1A' : true,
1276
<   '478E954CA5A715BC4E78DC2730A44ADFBB20D225C3AE4562882E0BFA3B13E374' : true,
1277
<   '47C5156F5664D1535C58F11AEBE349CBAEF19728907EBBD794D95E275E5201BD' : true,
1278
<   '47EC7A6E4CCC0CA9BC386A23F5E31BD14FC0501A02CA4B5867663339257D6EB8' : true,
1279
---
1280
>   '46601DC361A7306BA942625822C757F0702F63A009A5B0FA96CDB92CFDD07FB9' : true,
1281
>   '46CF8D35D0A439E7E4BF019F73EBC9636C9C3DCCDBBB4B707A21BC4B36F3EB22' : true,
1282
>   '46E74AF8240C97D2E91E118761CA4F74371BF7D2266601BAF6084BB1924B62D6' : true,
1283
309a303
1284
>   '4A12F9678B1A5B4677054BDA1CB6B41AD8A4F556A184E7E4C33669EDD31EA50D' : true,
1285
310a305
1286
>   '4A69353F89397B7FBF7B34B298BBA87342EE33C9F5B75660195F8B308FC892E9' : true,
1287
317c312,313
1288
<   '4C30D24EA7A5914CCCA63E3EA35BC8FB1235F5DCF380DD8A62A01EF15009668B' : true,
1289
---
1290
>   '4BA4EDD1EF23CC54D0287D277BD59A3EA14C6E7B37C508155E0EF9A01D048318' : true,
1291
>   '4C31265DEE511FAEF9E6B7543D920AB1884D164D630380446406C4C4EFCFC6AD' : true,
1292
320a317,318
1293
>   '4D2E2CCFE3A068F7C89D22E4EA6F738F99D3E62287FC8B9C8787D78A7EA77B30' : true,
1294
>   '4D3CD85A0580A0298BECD2FA69BB246CA91261145CA03370847FEDD2BA707CB1' : true,
1295
322d319
1296
<   '4D8C4D5D0326174F4268C67B81010F65F2DDF58CE700989FFFEEA379269B0AB2' : true,
1297
324d320
1298
<   '4DAD9C6A183D4E385824B6026E226BA5F220BD838F827C2063831B5998504253' : true,
1299
329c325
1300
<   '4F8EE39D7EFDB0B9FD7B3E781B24978C6602E480169A6092BCAA90386A0AADFB' : true,
1301
---
1302
>   '4EF7A69DC3625A39A416CCF7F607228D8A715D7419781218E4B827B83A504CCF' : true,
1303
331d326
1304
<   '50C6F0A7DF1F05E81EBD31ED778C2DBD7A048043157E91E43B051B34C5E843CA' : true,
1305
333d327
1306
<   '50D807568742476BDDFB2B2DD7532ADF770BC0A5D8CCF0710AA8EDA90AC1BF4E' : true,
1307
335a330
1308
>   '518B663FE089FF3E12F169F8EB5DE2EDC6635A11F14B7FD4207B307BDF2DAED5' : true,
1309
340a336,337
1310
>   '5208CCACD74C6B569607B3AAB6639B318FD5CEB9E3A3C763F11D6C4BD603ED5A' : true,
1311
>   '526D901BB36A96CF7AEA36490FE1A58EE0970BCD409CDA3E8659D8DDDD59560C' : true,
1312
341a339
1313
>   '528F9666D1C35F9AB6C5E9E6496B0618C6A3F5C37D6808E0601A8F2829A352F5' : true,
1314
343,345c341
1315
<   '52D622E1A7705A08FC599381FD67871611748B8EE9BD235E6C2A91E315C251D0' : true,
1316
<   '52FB96DD74E66D3AAD9362B58E44731D388E0B0E17DE700E2FF3A7ACB2FC1BE2' : true,
1317
<   '5322CEB4048FC373C5BBCCCA48985E2C72A380ECB490D143DA16482383C74B2B' : true,
1318
---
1319
>   '52E62F52537E672C499E0902B25BC800C87BD8C45BAB7B9683811A7D09C4559F' : true,
1320
347c343
1321
<   '53BC74DCB0A19B859F3FC60A2C6410D22F86321E2AA4D03B08C53181A0FDA996' : true,
1322
---
1323
>   '5376577409E17E8F37B2CC6FD486FBD356FF2AD0B5EF520DB7CDAD06C6A6F3E0' : true,
1324
349,351c345
1325
<   '549714E49A3540F72DBFAD7836857D6566333DBA4645F3C4F349E5FDE00D4302' : true,
1326
<   '54B2BBDF93C79A91B1DC96B4534B8745690C5EBA5FD21A24462ABCE7E869D178' : true,
1327
<   '54F7FBC10956E45F93F952A8DBF75467CA09CA6D45A0FD859761B66CF53A61E3' : true,
1328
---
1329
>   '5401D639B63C7A3075C6C5B61F64AD5246B8E06895EA510AA9D7C1418C3E06F4' : true,
1330
354d347
1331
<   '5572DFAD00443E9C4B0107CBC9FC381C41F3BD44497E4142E63C1E5645ADE8F9' : true,
1332
357c350
1333
<   '560643E22142CFB43DC9055CE558A62AA7102F75F6D42E3CA314920016A5779D' : true,
1334
---
1335
>   '5603628307C37436A0A6FD92B580DEDE34FE08652C3E73010745E471230A5B36' : true,
1336
361,363d353
1337
<   '56C3C0B8AFAC13E7ADBC449142D6782CC3C31A5E19DADEDF1CC01A1C80FD6D4B' : true,
1338
<   '56E517CBA2C7389F835B1BA349D636309FEFF05323957D8E64D6A2EC78F22883' : true,
1339
<   '572F317B14A0D117BA2B0F352841D9AA5DB609C9C5F9A9CB837D56533C983302' : true,
1340
365d354
1341
<   '575B7E593AA02701C1596A6A45E1FF458D4626BB2A31F5D3031B2023956FE5B7' : true,
1342
366a356
1343
>   '57A0B57635F2D75EBC9C3B166E68E35E1CF91BD074AA9D5CBCB3359D93F02859' : true,
1344
369a360
1345
>   '5878388C3C9B65DD3896113A5E88AC085793C21BE84ED1583D7939DF87D09D7A' : true,
1346
370a362,363
1347
>   '58C1439E2FF88E70D837218AA52270706EBA8C66B587805DC54AB12215416A05' : true,
1348
>   '590F7D88D52E1E705632486F4CB869B519331ABADB9B139951F8705F33E42C55' : true,
1349
372c365,367
1350
<   '592C1FA32CB66B17E0ADC3B3C6C65DB7A7B8863D0302D5E51C53416DB637BE6B' : true,
1351
---
1352
>   '5A4A8137AC418073C8912C4393D72D833960641E7343C43A2382861389B433D3' : true,
1353
>   '5A53389620711EDF33A7992A0ACD5EDA7D1AB729D6513ADFA26AA03C8A38675E' : true,
1354
>   '5AA7341552FF047164227AEFB41437582F7116D76B854F54920A5D6A9B72271C' : true,
1355
374d368
1356
<   '5C1AF4338F1854843A251AFCCBFB2F626FA70E1DE41D2C941F34D15230BB56C9' : true,
1357
376a371
1358
>   '5C568C32C672A2B3F7242D5CEAA2718B08CED5BDA028B84224D605079DBD0DD7' : true,
1359
378a374
1360
>   '5D0D6A8831205E33D40CA0CA2B8F396D05735A8D91B97DAFA61FBCB60ACC2BB1' : true,
1361
380,384c376,379
1362
<   '5D93064489EF0EFC4896A08CAFC0E39631930121F724A3D1CDFB83C96EABBE9E' : true,
1363
<   '5DBEE57E22D11886178D1B5DCB4CB55C90C1C035B7914BD887A3BF87734A3806' : true,
1364
<   '5DCDD41A1C6B5EC3D7442090754B58FF81C2BD410EE5F730233F5C46B0E541BD' : true,
1365
<   '5DE0EE469B7D133584FC7B15F067761A0A18D73CFCC973EDE76DF596C4F7C9A7' : true,
1366
<   '5EA41BBE7505A57EBB3603AB14050A284390BDB6E72B39D918232A5D13E702E1' : true,
1367
---
1368
>   '5D8DBE824180E72B5972E68A8373AC984757EAD57281A973B44B18C36DF6724B' : true,
1369
>   '5E03C9E7A51C7F8539BB4B25ABC9ED0CDB47B48D6A07B0C051D38939AAF91782' : true,
1370
>   '5E650BBA8E8037D6BBEE78A730F740DDDCDD7EC828120AD912F4BBD72794070C' : true,
1371
>   '5EA032BC171418766EB1B1F71A7868FAB9DA3C484A487BB1FE062566DF166002' : true,
1372
386,388d380
1373
<   '5F61E01E88738DB91B4328949BC927A80DE24814DFE2B54F9F832FB7871D6926' : true,
1374
<   '5F71744E0B28E62ABB0626131E0877737B5084AA6E648D268DD7D0D26B115EA2' : true,
1375
<   '5F85D6DF2EFBA0438EA4283D734CFAA8B3C43E22BCF7F6CFC24DBE82232ECD3F' : true,
1376
390a383,384
1377
>   '60B7C0E860123DF4BD6CD8EAC6560CAE6E9CE12DEA9B119B2FB90C57DB328EDE' : true,
1378
>   '60BDF27D143EA5E065460D76C87F245DF44D9C1D5D818C62832A3B83B9973824' : true,
1379
392d385
1380
<   '610B774EA0B634E6F9B5A73C2DE39026C1A55D9425691B68DF4803228BDB7F8A' : true,
1381
396a390
1382
>   '61C0C838E39FD9CB6B924046875626383C616DC9E106BFB5573C5CD2DF7C8738' : true,
1383
398a393
1384
>   '626042CAC6DE8C95C77C0E732144FCBD63418D72ED04CCB42FCBF260B38B21D5' : true,
1385
400d394
1386
<   '628B608326DFE57DF84B8289702D0510AF97D93EE30499B0CB5140921EC87DFD' : true,
1387
401a396
1388
>   '62B59DE2632C2A03669FF060A2C2047B9A95F49050C64B6BF5A782806AC10E99' : true,
1389
403a399
1390
>   '6345E8D1EC10F5092710B275C7E48D8CD6C5D1885994B18DBDFCB2E5AFB9793B' : true,
1391
405d400
1392
<   '63AB6D72993230FECFB8A489FC3B76C1A16D158A2F8C0AF9AA7B02F6A638F4E4' : true,
1393
408c403
1394
<   '640ABE7DD00142C0BC18A62F0DF54284DC89AA1BA000DBCD992F719A4B9D2887' : true,
1395
---
1396
>   '640AD0B7F4803223887EAE106DDD628BED925569AB309C01E1C8B640FF05B2B5' : true,
1397
410a406
1398
>   '6489A71D718B44D5479D3C5AA2CEE70A2E6738AF25F0288B2BFFEF833280C0C5' : true,
1399
417,418c413
1400
<   '663A06084041682DEE8C4F8C41BB7C829E5946E2A83D28BECD5E62756502825C' : true,
1401
<   '664EF517A09AAC31503712482FAD76860E0376164400E67A96177EDC25CC4CE2' : true,
1402
---
1403
>   '66795B4CC33E5CF75F1467F1D97528306D8CFD78DCA8D838A11D5A4E6D3F374F' : true,
1404
423,424c418,419
1405
<   '67118345997FE5257EB55439485C3BE019B32F1235E050EA2769A7DD80E6BBF3' : true,
1406
<   '673739D407C00E1F449A4F9846B8453C09BA0D0F46442053DD5339F93A2B0065' : true,
1407
---
1408
>   '6750705DF61157E112906D9D3BD36F21696B0DFEC5D6E1CF728A443D76912C57' : true,
1409
>   '67DBD139B060C071667F2A45E06C7E159117263D593C95138066C7BA3AD20DF0' : true,
1410
426a422
1411
>   '686E60A6CA7744B42193C83E73617621EBE2C59C438B7A32FEA9D7DD14F2072F' : true,
1412
428d423
1413
<   '688FE577BEDBA2FDAA3581F2A97A1388CA0E380387227AFB252297AEB6BD6FDA' : true,
1414
429a425
1415
>   '692C0A28DE13EBB75674023CC105A5F663CF5C67153225EF1193209E985CB1D4' : true,
1416
431,433c427,428
1417
<   '69EC7BB154853BCCDC5C5646ED659F54B957152BDF1799B2BD48D4EF52DD9A85' : true,
1418
<   '69F71F4F07365D7F684EC748F9CE61559DA33FBE1C9772F836664D656F51A5F6' : true,
1419
<   '6AAC975279BDCCFB9D64F96F258D116ECDC41E526DE6B14FB10A8EEFA550A784' : true,
1420
---
1421
>   '69CE183BD9B04AD76F8FEBE25095D92D95888AA7D8735400158CD60B836FCF05' : true,
1422
>   '6A7D32C4F099C8D7ECA61CECDFCE82C5D241F33F6A02B3A00D89802D4689DCBC' : true,
1423
436c431,432
1424
<   '6B079CEE0C61F7DEEFC419FBABA5A734BEB22AB794791A0B6247E61EB4493B78' : true,
1425
---
1426
>   '6AEEBBFBD6A2EB3C41164F87A2491C293A66DB518999827273FDEA3F1892ADAD' : true,
1427
>   '6B02CD14A3675354A800006220E94D8D4D5F9774D60EC984955FF720D927E529' : true,
1428
440c436
1429
<   '6C2FD820535D5A821A1D96C86B45519B751F141CEE8E1DFE6E52EA5370E1E7F5' : true,
1430
---
1431
>   '6BF2234F99577BEF099F5A651C125E660A765202F83A7FF24C82FFC87F87C3FB' : true,
1432
441a438
1433
>   '6D1FC10BB256C71CF8A543B99AE433A55FD8EA467FB11EBAF9ABB24C923B4DBF' : true,
1434
442a440
1435
>   '6D4210568EBEADBB8782B6345952223B49407EEF3F8FEAFAE6D14DDB9DCFE710' : true,
1436
444d441
1437
<   '6D9C7D48EBEC4A7D808E0A45C6ADB9A6CC5E61551DDF1A24A3A74846039208AF' : true,
1438
446,448c443
1439
<   '6DB3ED8E913F7236F1691473EB370D7FD9DA84FB1D8E07438E128878840EEEE5' : true,
1440
<   '6DC6A2951DC967373452FB4E9A95DEEBCAC70945DDE09BDA398F74161060EEC7' : true,
1441
<   '6DD13D5385101A3323ECC27F7548813E240A1D58E37DF8D820CD2E2998BBB8C1' : true,
1442
---
1443
>   '6DC90241CFAD3946A0A53940327E950D8D7248FA5896CFEFB60F543000A0B165' : true,
1444
450,452c445,446
1445
<   '6EC6D27D2BE121B49CCDB7866F4FFCC3C2091AF00405CED481AD072FE4BC2307' : true,
1446
<   '6F45127FE064F0BBB5EAF17D7A4D9EA3A47175AEF7CAB5C98F2B6D11F28A4BB7' : true,
1447
<   '6FFF24F5CF69ACA10DFEBDCEA8B5A56990728D9EADA33D0CD316BF042E79068C' : true,
1448
---
1449
>   '6FCE4CF77E254C2920BE515857DAB1929ECE7638DD8C370C1AF6A374F36517A6' : true,
1450
>   '701E5C167D1D2A47E29F6E0EF64D59D978CA3287D20E3590ABF531EEFDDD885F' : true,
1451
455a450
1452
>   '70DF998D006A8684F543CF929F8223770479451AC680070169CF11B6B409CBD5' : true,
1453
457,460d451
1454
<   '711C387F2C7A8AD850D98BB2D145DA6F0240960AC5563A50CC6251C28D659503' : true,
1455
<   '716121E1DA67D3A82CC8116139F78C34C30E6DC96F647B7F474CE569B38D0F3F' : true,
1456
<   '7177E89F5B3033D51F000533ACEA71FDEAEC93E4C3CEA1E0FF68F78BF35C8B21' : true,
1457
<   '71C96A7294C59E44C257A0BDA7578AC44118DE25DEE425F73E0A211066FE6AD4' : true,
1458
461a453
1459
>   '71F2DAF17AC798022DF73260BCDA153082CE08952CAED20A66A588B46E83000A' : true,
1460
464,465c456
1461
<   '72438F5523C4516DEF379EA7206A883EA5876DDAEA39EC848A5C456E9215A1D3' : true,
1462
<   '727EB1C33A66E7DC0768741432204682504B8D4302D3B097181090064DB99F53' : true,
1463
---
1464
>   '7225F14A44AC70458F5C98BD93C0A381A68899F718AF8300C897612E65461827' : true,
1465
470d460
1466
<   '739A4410178E7D1D310A8120651655322CCBA6F84D3F566FE9A9F1C268578DD1' : true,
1467
471a462
1468
>   '73C4C95F998FC60D5EAE1283F28C36C63697C481E6B321EE7DC46DAE585B0E11' : true,
1469
474a466
1470
>   '74A9F7B27B38326F64792AAF791E5A5969071CD05C8ECB1E068035AF9AEAF482' : true,
1471
478c470
1472
<   '75B83054C471114D4A2839FB6B0FF55FE147D4968770A78F469ABEE5DE3E07E6' : true,
1473
---
1474
>   '75A9264209E9CFFCF8C4D74F1988A6AD0F509269A5DDA3DAEFC0068EDBE6AB26' : true,
1475
479a472,473
1476
>   '76180E9A156833EF0B8FA7D3C83404086F9F1141580FEB3710AE5B93B2E819C1' : true,
1477
>   '7621A0521A873D9B899C1F5BB52AF07870D8C98B5FF0797383C26A7D151789F6' : true,
1478
482,483c476
1479
<   '76F8713E43FCFFDC282532FD58B8474C514D432CE8C85734923D96450A6623E3' : true,
1480
<   '76F92D711D9E8BB1F3210C9CDEE23CA1DCCA929595CA0F5D0C3150DA56B2618B' : true,
1481
---
1482
>   '76D1EE820C99B447CE9277881319CD5B5D2BDE8182D5AE5EED8326244CDA6621' : true,
1483
484a478,480
1484
>   '77C5EFEDC19C242BDC746C5EF4A1DF4117918CBE078CF6DD65FC274DB64CFBAD' : true,
1485
>   '780AD07FBA71E98848DABAE3B6B94B292E5959CCC36769683E0213E78B759DEB' : true,
1486
>   '7871679EEF661F72EE1CCD043F1B7C597E8F23196B653B42634C37F2B6619B00' : true,
1487
491d486
1488
<   '79F3CF8BED0EEB720C3411D03257BB351FF5824181EFA725214AD60C11E7DE2A' : true,
1489
496c491
1490
<   '7B91BB0669DCF091D0C042FD14F1CA6B8718A4E1798A4BE8957DE6EEF186AB83' : true,
1491
---
1492
>   '7BA22815A242ED9FF3AA2FFD5F121935346190B63E61E0EE4EFC6EAAF76BA6F6' : true,
1493
501d495
1494
<   '7D4642DEBC7CF346EC7846E9B0314B73B6B9C23F8016E23E8BD49ED247D2BEBC' : true,
1495
502a497,498
1496
>   '7D817F280F1D664E0C9E717287D6AADB1132D4F3A3E2001B94009119733C9434' : true,
1497
>   '7DDD5D1914FD375229088F2E7E2CCC9F557B2E86956356D21E4FAC6B5D5B7EC2' : true,
1498
505d500
1499
<   '7E0920FB66D549811711C20F1789AF9FFC54846E738997B8A18A2F154F57D29F' : true,
1500
507c502
1501
<   '7E73DC62FF77BE88149C85444C4066E0657AADB72716230EBC073848DBD7F59A' : true,
1502
---
1503
>   '7E723113D07305D5E9843032E474637331F1567CF33EDD8316059148AA2E3ED8' : true,
1504
511d505
1505
<   '7FFDBE3A1A423CCC6EC3C9FCE2D51B91D70EB1A122BD7FB53875F4BB08E3E966' : true,
1506
514c508
1507
<   '807849BBCF3FC901816BD5C23E0EFD51FFD9485FC34A5A086174A7E91DAD175D' : true,
1508
---
1509
>   '80BB61C435AE010A1BBBC72F9CDD1BA74CCFFAEE4C74E07446ABED3DA2685427' : true,
1510
516c510
1511
<   '81041B22B3F6B997CF39557DA4E384FA0D8FFDC59F790CAC512D966297380E90' : true,
1512
---
1513
>   '810C819EF5A6F077751EDAD2FD0E77BDDC9567EA2C27ACDBE677BB3FBE3E4E4A' : true,
1514
519d512
1515
<   '814328B3A40AA4F30950FF66E5DF4304428357F2C5AEA8C1E397723C751651C6' : true,
1516
520a514
1517
>   '8253A0516BAE8FA0D24AB03D7E4AF8898FD1EB8333D2925CE515FC3DB6ABC5CC' : true,
1518
526c520,521
1519
<   '843DE3411DE65A522709898B3CF9AD8A6CD1011BAE6F9DE0FE7DF2496F95C84B' : true,
1520
---
1521
>   '844B51F620215D6845EB82700563692BDD5EE144D097D24FFA8D99C8FB5FCF28' : true,
1522
>   '848E7A1C6E45D88BF111E43067FCF92F6F17BEE0B52C99381668797B108FE80A' : true,
1523
530d524
1524
<   '8502DA6C4457ACBF635D8B3719166A351ACB8F2EAE0F9756EC1636B90CF6068C' : true,
1525
538d531
1526
<   '8627217D9525127A4161D0F1809492211C4105596A011CCD2F10968D3C3307CD' : true,
1527
539a533
1528
>   '878C8800E459A4D4B9989B0DB92C628E8A13574E71B3324E50484F70555B840C' : true,
1529
541c535,536
1530
<   '8798A29F91634076CE7FFE713E075C4A9E231DB4113DEEFE4FF052C73E900069' : true,
1531
---
1532
>   '87C002662AAAB5BE7B6A7CF4B1CE9036E3A2A70A0A3CD80F64005C889ECCDDBE' : true,
1533
>   '8858520A8D4E5C88D777C33963CC7F43E796B555E7FC573681B59DCFAFB43EFA' : true,
1534
542a538
1535
>   '88C3951EA08F6218D53C848FD0745408A54B8588AD3728B9634AFF9280055838' : true,
1536
544d539
1537
<   '88DA049C5A0F1F2FF5C8D53A9763C6E53B5E653753AEBD8C1A7227F5CA83995D' : true,
1538
546d540
1539
<   '89972853B85F67232811C446ADD4CDCEF7D262CAF5E565E92DE28350D653B982' : true,
1540
549c543
1541
<   '8A0BD2A91793B98A002F45011E47B8B81C1F11CF4F10550B39861B709A22A8B0' : true,
1542
---
1543
>   '8A0D973D9BC8BA74619B1D55816F7931E1114D8A72901D7AA3966A89D96A0AD3' : true,
1544
551a546
1545
>   '8B1225A29F8C7203B6154A99814B028517B03B3D4B5A3E25239EC91650206C0D' : true,
1546
552a548
1547
>   '8B52AE402628DBFA70BFCE1B172D676422D5E720F7E3AE2E7B195D4FB4E3F285' : true,
1548
558a555
1549
>   '8C6DDA18A4CB339717E1321FBFDC9A3ACC52F2FEF6FB453EA389A2B43FFFC63C' : true,
1550
563c560
1551
<   '8D1399FC7382FB9F29574FADD5757DD9213F6A13D8A318ED9F60B9936F46C548' : true,
1552
---
1553
>   '8D1EBA5F6A209614B68AF63D583392DF844036E8BE335440D0740396366FFC4C' : true,
1554
565c562
1555
<   '8E778C2C00AEB79E3C3BD5B071E2102021DA3E343A2F39E18B0F114682974D9C' : true,
1556
---
1557
>   '8DD64FF5EE29EAEA20DFFB1B446F1441CD291260939D41C7784AF872CDD60FAD' : true,
1558
566a564
1559
>   '8EB48C6A21AF524F446D3F9F4BBB78C5CCA368441B9858FA87DD6664D603AC2F' : true,
1560
567a566
1561
>   '8F8515B35B665B69D0DB9661EAE9FF0829B71CF4AFEB3BBF988BEE73985F5D3B' : true,
1562
570c569
1563
<   '9055AB7512901D1134842CD2E96FA6A7ACD149ECB71088495948DB65D70C5377' : true,
1564
---
1565
>   '8FA49556B9E8C97F768F94A3D2653ED2E3E927D31EC7A916D0744BFF07B5E685' : true,
1566
572,575d570
1567
<   '90E64A0F26C4DB9ADC398C779A5E526DC969AAFEDD0E93CC3D8E8409EE0A14E5' : true,
1568
<   '91045740421F423B4863813FDA01E15F2DBFFF49AD80C9B732B0921980734999' : true,
1569
<   '9122BF7F13DF3B05605A0F292B4C90830F29A3196A5156D97B76AA8507D3FEB2' : true,
1570
<   '912C3FC6899CD7AF6EB7639C9522EBF7E41B91DC47C167AAABB3695E61486538' : true,
1571
577d571
1572
<   '9155BD4E0154F175C67770CD7B10B714A7AD41BA78252254DC0AF2DECEAADE32' : true,
1573
580a575
1574
>   '92059CF4A0175D14DDA7D7EC71DFC76A7A91A75F4B9BD886E5595413920885FC' : true,
1575
583d577
1576
<   '926B2CC74A86E6919298CF1B5D43A44E70214CC94C416E9DA227701666BBEE6C' : true,
1577
586d579
1578
<   '92FC5C28899C60D64BE77DDC8D6F746182A5C5CAED5A3CA093E6A6FC8070B64B' : true,
1579
588d580
1580
<   '93197C3990B717E3C0A72941DE6DC382265AF352701F62FE07714449334CDD7F' : true,
1581
591,592d582
1582
<   '939BF6798DB161C0B92007D4E725EF2EAE06985A8FCD7754967CE7AB0D650F5A' : true,
1583
<   '93BF03482F668B7E936D4EAF23D3EA36DE0E603480C2F559406F2E44B0B3148F' : true,
1584
595,596c585
1585
<   '9452917F8C5F6F630305312187EA4858EC07A829CC74DAD74BA24EFE7F4F883D' : true,
1586
<   '94F858E57AC5AA1A13209E8D6DB28141036EDF3AE160BE93AE79A7CEB0CA33B9' : true,
1587
---
1588
>   '94CE12FB5F69E4273C8F813ED37ECB954AD667BC81C4E37DD27A40C291DDB12E' : true,
1589
598c587,588
1590
<   '95A1D4BC10A9AF2304C4C9489A3C55845CE7BF588BCF920365C6B2A423923A59' : true,
1591
---
1592
>   '956DE14452F6966BDC2C3CFE4874878D446083AE81BCD83C705B8E757FA0A390' : true,
1593
>   '95A4DD514D4B5F9B29118B3CE20FD8D4996F40424D7D64BF678A252262608C70' : true,
1594
600c590
1595
<   '9663C730BE3E8838AF256662B79C2EEC10D7AB2595D9712EAD7BB4C8F5454837' : true,
1596
---
1597
>   '9658D54C28C27DD6E9B79098D7D86C1EA32215492E8AE9DB225E3410EEBC39CE' : true,
1598
601a592
1599
>   '96B78900F165A1CA3843F3036950C7A5CB299CFA98F7A1BA6950AADB5DC1459A' : true,
1600
603,605c594
1601
<   '9703B5D60B49A69534FA129729FE3176EA17E03C53BC90BF11280C050F776E73' : true,
1602
<   '970D20E6919A2FACA4E42CDD5E94B6F26ABB2AC051278F10E746CFD897996249' : true,
1603
<   '9728534E56087F5D0E34881BF62834B32DBE8EC7629A7EE04F52878A9A61E36C' : true,
1604
---
1605
>   '973CA0AA2F294AE5068B75F5562CDBD51AE5ABD2E25C8F20CE38572587589799' : true,
1606
606a596
1607
>   '977C77EDC0AE3D98F2FE87B8C309DACC9306DC575D2D8FC358973DC716EAD715' : true,
1608
608a599
1609
>   '983120089E357F1255EAA175207B7DB3462CC8481C2D4F8150B5C4FB93E274C7' : true,
1610
615c606
1611
<   '99F02B4F32B9993CB7656021DA511B31A2944585B6B9C6DD5BC1F4A41681C5DD' : true,
1612
---
1613
>   '99E437DA5156E02DE52D0D95AFDE0FDBAF8F626F4D3BAD2FFFE7F4C75D76BD60' : true,
1614
617c608,610
1615
<   '9A2ABE7CC70A0E4C5938A7AF3CB4C165872C3387BFC4653F48A68F39C13F3899' : true,
1616
---
1617
>   '9A36248A6C3142FB6AE62E262E0F519CD609A0207BCB6891443BD5AA5C02AEDF' : true,
1618
>   '9A9B087A4581C1FE71B3F4D7C041E93D4EC1093B01AF3ED96548AB93254EF65A' : true,
1619
>   '9AC79E2916EDA1EB936B7FC6779F139ACC665C33F143340C5CE540B69F2E9F18' : true,
1620
621d613
1621
<   '9B1F3F707765DA5034A4C9B9C3D341BDEDEEC1A13C3EA464045D905CBB9B4ADA' : true,
1622
623,624d614
1623
<   '9B4F75DA103442C908F7CE2C0D7EF9674813C56C384A0A64D326BE91F34A6F63' : true,
1624
<   '9B641759FBECFC4BD8839B33889BC669CA8F1592A94AAEF087967530A34BA32B' : true,
1625
626a617
1626
>   '9B8E5BB6E9E655E4547D6782EE9018C8BE585F7BF89555A920C9157DCC15D0C1' : true,
1627
629c620
1628
<   '9C052D1467B80EC3013D5641910680BFFE3616095B7F3FE61338C31A4E08A6A5' : true,
1629
---
1630
>   '9C0F47FE70B9E636409CD37362B052B40B3CF765DFE80E71D999E7EB1AE1D4C2' : true,
1631
632d622
1632
<   '9CBBB47E211DC5C8FB0613F90EF2828B4C14945D15C27A6F16BA4F90B02D066F' : true,
1633
634d623
1634
<   '9D10CB4207766E66BF3482393E13D3E3BB23AEC361470B6693597632FDAEB302' : true,
1635
639,642c628
1636
<   '9EE2376792A6437F098A3DA7A2CA9AB54D9E9138051FB201CF84A91653C9C32B' : true,
1637
<   '9F194F70160074F1321FC1140FD02064E1FC084CFDB96E1080396841F6D3BB4B' : true,
1638
<   '9F31E8A729CDBA0C25E4D73181264776E6DC12F264ACDE58F047382B0326E463' : true,
1639
<   '9F5CB7420AFF2B5250A87EE7D0F1878496A34BCADB0971DD5AC3C33465C07565' : true,
1640
---
1641
>   '9EBA1808D31F89FD26CA580E6FD37B15D0261A807154FBAF11A7DA4B0C9A5E06' : true,
1642
645d630
1643
<   'A024128989862D72CA20143420C8437F2E91D063A2D85E3B44C0E9F125DC7E59' : true,
1644
650c635
1645
<   'A09161C66FBE8334516AA4F5705D03ED3022BEB980CEC77041C57ACF4C04EB21' : true,
1646
---
1647
>   'A0B4E9AFEFA1B8966355614B201506B13CC213060D2661264491601F7FAD8269' : true,
1648
653c638
1649
<   'A1434249C4B9832F01BE03643639D862CD66EA988BB1297822D5ED9A9D0B86D0' : true,
1650
---
1651
>   'A1504C131B0FE702B64AA259B901DA2D9B2AE9D85AADE02F1528C1147F98E535' : true,
1652
658,659c643
1653
<   'A1C8AEB8D3097DE429CEA435BE063B3E16447F24132E1F1AE459C5855BC4DAB3' : true,
1654
<   'A242ECCA540644D65C4152B7D44ECC0DD7A831DB42653CB4E92406E2D0AE4CCE' : true,
1655
---
1656
>   'A219A198FA5CE79A2ADBC1EAB8BE34F086699B9A16F88DD2F823325F7481FA8D' : true,
1657
665a650
1658
>   'A32A8197E25FF03AC02B1548EC597DC93B2F3376E971B143538542A6A2212AA1' : true,
1659
666a652
1660
>   'A334A1C1BCBBE82C131CA48858CC1D56495D2CE2B598E5C6E81672D7E9FF9FC7' : true,
1661
668a655
1662
>   'A369DC916C6CA5851F181C38EAAFA733310F462384651762FDA4B2CFBFFF07D6' : true,
1663
670d656
1664
<   'A3BD2DB1D95E67D4A20301B41F1E797421E259948072A2E4B9DF9158D8FA9143' : true,
1665
672,674c658,661
1666
<   'A4A4A1370E59CF5B199B4B0B5A04E12DE67465C6BA51DD379678194E1328FDE0' : true,
1667
<   'A503E853F535F69CB099A247D5FA9D2F656CA1992C65C050CC5A36FF11DD47FB' : true,
1668
<   'A5DF74566E059491858A87805B36E5060095F7963D35877692C2951C1D649E22' : true,
1669
---
1670
>   'A42FFF1190531FF187F05767CF5029A8CD637C72A8AFD222118463200A27FB84' : true,
1671
>   'A432841B8E8CE4F3B7992A740AB014B3D78ACD930DA113753E8D2E2E34A5358C' : true,
1672
>   'A46D4265BD5168CB36068465327371B2B9E2ACFBA66E368A8B90CF77A251ED09' : true,
1673
>   'A61D1D1BF3A48836E418525F674E32CB457F4C74ECF525BC18A3035A26DB1CBE' : true,
1674
676d662
1675
<   'A66BDA4B1FB0A132F118520414B7C2FE89EB9CAEA7E599743F0DDB2F5DA36294' : true,
1676
677a664
1677
>   'A696B059AC99AA5CAF081FE9DE0F113EF0032A9F799A92663985EA5939B6F30B' : true,
1678
679d665
1679
<   'A718CF6FB0B4672FDB9BA1CDB812CDB98423DD8ACC8991780BE5E0FAEB863FBC' : true,
1680
681d666
1681
<   'A7BBF060D6455FAC1B40C3C14FDC8DCAB6B032A3C636F78EFF0035E035D2A289' : true,
1682
684,685c669
1683
<   'A85EC0692236ED65D5C36943B771F81FA013E93A887264C8870599C858456241' : true,
1684
<   'A8F36E0AEAF9A102084B815C248191CB8EAE56E4A732C669092E6C693606425F' : true,
1685
---
1686
>   'A84DC1DB143EEE938A45743268683770BA0FB2EE69A4EB4B131841555CF1E124' : true,
1687
687c671
1688
<   'A91F446F5E2FF93B1FA514B3CECA23118E1000AD358CFE04DFD5E6E25E7AB292' : true,
1689
---
1690
>   'A90478E1DFC0653194083700E5101CB3B58FF56E9E68ECF36E1D970522A60681' : true,
1691
691d674
1692
<   'A9E614A0EBCCB8C193707AB9EB139666AE3C4CE774741351D00A25647ECE659E' : true,
1693
692a676,677
1694
>   'AA33D12B28CCA921C5DAB6E8055B0F162ED6B6B9F92D85F93749619165B1D3A2' : true,
1695
>   'AA4FC2B4CCD9E52767C35AA8321783EDF85CD1F2F631BE5606C9B35C88486D54' : true,
1696
693a679
1697
>   'AA70F6E381B7B7BE508E8D5EB062186FB323FE00A75B264F43B771B731FE96AB' : true,
1698
697d682
1699
<   'AB5608534365B885795A5E3D004C5F29613BA05E2C9CABE0FE00C99067318A36' : true,
1700
698a684
1701
>   'ABF22A6F97015839A27CBED234E40E5BC875A95E81F4485ABC66FF6D35E38E2C' : true,
1702
699a686
1703
>   'AC33C7B064D8FD9A0E5A00BC70581133E949AA0E61209B55010E310791339D4A' : true,
1704
701d687
1705
<   'AC523C58EEF332E2FA0491FD81659997FE32F1EEA4F7694D9C149ADF4B18BF2F' : true,
1706
703c689
1707
<   'ACA129E9ABBBC9473A45F1F0688C8FB4BB9E7B9965D8BA382DB371575A2100FC' : true,
1708
---
1709
>   'ACD1D0DF8BE51A80520D345BB16B04745BCBB48B01D936B018FFDA71981F817C' : true,
1710
712a699,700
1711
>   'AFBAAD26120F25FACFB7E1ABAD16A58455814B1A46DA986FCD04330A88DC1502' : true,
1712
>   'AFDCE2C9BDE084811D64F5408E8AF94945CFB9F7FC69C9A27C8EE39102858DD3' : true,
1713
718a707,708
1714
>   'B1B58B7EEBC1947CB840FC4C2713D0DDB23DEBC75E58DB15610AB4EA9A1DE1C3' : true,
1715
>   'B1BEE5F876D9695E23EBE9D0BF32D0DB4D05096C004A073487C5B3FA26719FCB' : true,
1716
719a710
1717
>   'B1EA0EB5DC9C9766C903870A4E9DD90C92C8780189ACCADDD9012E1D9911591B' : true,
1718
720a712,713
1719
>   'B278FB3D58DC99E1CA192EEC63A0F34F9EB8294A23EF98C73F7C5F52A5C86FE4' : true,
1720
>   'B295FDC9D7462488EBD4E5FA8E5B062FE5E2D0432C6A02B99F4CAD1F9BE6D0BB' : true,
1721
722,723d714
1722
<   'B2B46BCF24DBED9CB8A829DEDB3536B95774AE8223A8B160C2B097154A3EB8E0' : true,
1723
<   'B2C34569468F2754686AD5C63A5B6C71FBDC5D7C78B161C70F97309CAE2FF270' : true,
1724
731d721
1725
<   'B3A416E4B0C7F99B72761D34E3362F92D0F59EED1EA412FBC54F1699A79A1951' : true,
1726
736a727,728
1727
>   'B4C49BF02ECA8D4E0648B386A408C377ED9A9E8E3DFEAC1D7904D3D14C5E2F76' : true,
1728
>   'B4C5319F6F6A80B60C2A5A715FB1444F974024960339D49E0301E7F5A530595B' : true,
1729
739c731,732
1730
<   'B5826AF547B2C4FBB118246774B8C027E7E18255F864395300F07B03E43571CE' : true,
1731
---
1732
>   'B5A37CEF1BF2C02B97F06094BA1FC88C650D4F46C43091914D5BC9CC1836A0D1' : true,
1733
>   'B5E58034813A6D2A70A162E5C9469EA7D31FE15F7478564E5698A388F201A646' : true,
1734
743c736
1735
<   'B7193D3E26C14AB91AB1C2AB9728C7F9D832A6C4EDBBD2953385E3F1D2B9BB91' : true,
1736
---
1737
>   'B6B0AB34677500F9A39F33BFB229A8B211E9A75506BC0D4E894DA99804B40603' : true,
1738
746c739,741
1739
<   'B89D499E25ABC593F9B29B3C7364EF7196146DC810443334895D99BD15A5846E' : true,
1740
---
1741
>   'B7EC03174DAD602E897345B072749AA86CAF05151062989E183C3039DE25569D' : true,
1742
>   'B8845702F28C3AF9B35D8B5F1DFFFA014CE411CF592B18395F700CD8B937F3B9' : true,
1743
>   'B89D04CAFB7A2D049F425329570E4582ACDFC0B92F54A8709716A3001377887B' : true,
1744
751c746,747
1745
<   'B9EC2202B3D25F6C2CFEEC96ECB1967C1171197A121F6278682988D68C9CCB6B' : true,
1746
---
1747
>   'B9EF83009F5C8B4C3A0C1B8EB263B4AADA87D4D2263887F8AFCA40FD4A7F78CE' : true,
1748
>   'B9F8D7E05743BCE5E58CA2A0CDE89E7E1A9397417F75813B492785D72D4F8510' : true,
1749
753d748
1750
<   'BA52B8302644DF24B0DBDE018536FE6D2C41315131698A53D2906347DEE8BB82' : true,
1751
755,757c750,752
1752
<   'BA74E086962745CB5EDA606276E3FCE2220C2EDEF5824FC5D67EBFD1A94A0685' : true,
1753
<   'BACEEA64658C6E86E126219A40FCBEE7B3A0C7687503114E59B3EF28E0C06A19' : true,
1754
<   'BB6970E212CBF8325822B968387F263BA8D6CC479F448CF712381A36C92965DB' : true,
1755
---
1756
>   'BA8089CC9A0F25A27251DAD14E47714A331C35ACCE2EDFCC51CD73EFA83E2EB4' : true,
1757
>   'BAFBC5503CBB29FE4D094BB0B0D04B22852E9120DD54D34D9247A4E570FD458B' : true,
1758
>   'BB3C208314AFEC26DCB183A0E4DA2C1169F9CC435F1EDB38C349AD97B2C3F6B9' : true,
1759
759c754,755
1760
<   'BC6CD35DE4628EB8F61CDA81F90A4E7DC7F58EA9B7A8590DA1BF2F8C78EBAAE1' : true,
1761
---
1762
>   'BC0C5DBC1020476F067127D89E5C9A2AA88F141312919D7C0BF1B964D4820FF7' : true,
1763
>   'BC86367AF49A238438C89460780C94DE2C1E49021437B3DFC590A63F46332888' : true,
1764
761d756
1765
<   'BCB6468D80641046B9B1D3A9A24FB092B76603F256FFEF183D0EB6A9218DF2C3' : true,
1766
765c760,761
1767
<   'BD6055F00FD05A1C84C05454958354052E8924FDAC99539EC2291C5B85C8953F' : true,
1768
---
1769
>   'BD4309D792EBF40F5962B65405970EC2ACC7ED1109A1F5FEB486C84327FF6D46' : true,
1770
>   'BDB42DE005453117D2B60263504B9B58E9AB64B57A7385279CA0323D7246F02A' : true,
1771
767d762
1772
<   'BEA7ED0A4C77505CFF6FAEA9F1B399C41324C52804D35EE4D9076F726C8D2C4E' : true,
1773
771,772d765
1774
<   'BF1B69CDF599AA45F38EC98CEE4695058AA29CD8B489108944EA95707D58595B' : true,
1775
<   'BF209FFCABFF17D3ED4987EC0FB5AAC5C0D961546AF52CF873B560BA4BA48A8A' : true,
1776
779,781c772
1777
<   'C0F030365B0F33FE3624CCAE4EB7A81BC7B9127966953E82DEA179DD1AE66458' : true,
1778
<   'C18C15016390F78742A45137409C8BEAC8A0475E39A444448D3ACE0499546462' : true,
1779
<   'C1E47B7AE65AB520DC18A03F063101FD14AB70E868F16DB2C42ECCBEEEE5A6D9' : true,
1780
---
1781
>   'C1726BABAC393C02850032B1C43B095C3805E1DEB1FBB2CD8C76E533AFA80484' : true,
1782
784d774
1783
<   'C2126EE4AAC4400E18D80ED8195C1A28517EBB3920244FD66D9F67BE89247FF7' : true,
1784
787,788d776
1785
<   'C2EC6DD4A6B571933F5DE0F94508D629FAA849B1A31A8AB979DAAECFED2AD253' : true,
1786
<   'C3107C690BA5007E11C076B2FEB58BF88E67D1ADA15DF1B8280D226177AB6A13' : true,
1787
791d778
1788
<   'C33FE55FBE5E1E767E0FA9FE89D0B287AD7B3A41E1117461BCE96A681030C9AE' : true,
1789
794d780
1790
<   'C35CD8ADD8FF80A9CEFC31D3E0DB613D725FDB0BE52B9ECBB730E970A59E7E98' : true,
1791
795a782
1792
>   'C3DCE474FB44F22E6497A1FCE2C45DEE167853134C6F1C21C13F1707B0BC7FBC' : true,
1793
796a784
1794
>   'C51ADC8D1B7014B4B9DB3EE230C67BF6F164956C390D41E5F8415977D9D9491E' : true,
1795
798c786
1796
<   'C586979CC69441D6717388E137E2B01FD04BF3C7C4F6E5006D71B45B81A7C04E' : true,
1797
---
1798
>   'C58F0FF2DF810FAC8EA095F349A2E6D7E0D9C09D6FBE7D45895408530E1C75F4' : true,
1799
800,802d787
1800
<   'C5C58D7B5A145FD684B3A5A6D12468617BE9DF323D37015420BAEFAFC086EBA1' : true,
1801
<   'C5FCA59FE803B0F5B7BDD9387C65A1A5B9CDC8D0C76B79C2954CB769506DD1F7' : true,
1802
<   'C677F67FCA735BCF6AFB51031697A967AD09FB8ED0A9EE9A1F532F1CB5F6AF59' : true,
1803
804a790
1804
>   'C6D78C940B53FE313A3DB674498E62C0B10E4C63B2D5E2A84D437BEE64A3F4F1' : true,
1805
808d793
1806
<   'C7056A5FFEA8A4751271C17CAA9EF3BBDB7142A08ACA673522EDFD9AD18AFE66' : true,
1807
809a795,796
1808
>   'C74B4D9C0A7CB22F6F7B60BD4CEF94A34820E3A0419CA5CCA3CF187612693FAD' : true,
1809
>   'C77AF2D81D578D009F9859CDEFD2E19A5B3DFA98FCE909C353E235D650DB514F' : true,
1810
810a798
1811
>   'C84E5F64496198370D4E53DD6FD1828388E878759375F498A8670C035275D6C1' : true,
1812
813d800
1813
<   'C95235BA613C42AEEBE5B2CD04707B323083EF4BAF4B11C633288AAA7CF98AD7' : true,
1814
815d801
1815
<   'C9A9B118F63E40C8F5F73E89E580626EDEE028DF8ABE5D3374CDA69459207CDB' : true,
1816
817a804,805
1817
>   'CA353A661EFF3C6EA9C66AA7585C19EDCD1C00085C06BB9B0DA2DA78C84D8CB2' : true,
1818
>   'CA400A13D999554CB3EE03F1F12F7E578ED5C52CBCAF9748124E3402052F921E' : true,
1819
820c808
1820
<   'CA93EC5E6881B59BFA7B2B59B2A9D574F599534BBA6D3D50834271DEBB31A1A6' : true,
1821
---
1822
>   'CA846077B68DCA99AE30BAC33929143E856784B64E70098CBC7FF5BBD85C824B' : true,
1823
823d810
1824
<   'CADF1142EA883AABDF13A65D7F0C5044AD293A719AB56A1C1B88D30D96BDA14D' : true,
1825
826,827d812
1826
<   'CBBF31DA8CB7BF399EFEA030057004346FD5D8BD07CEBCE934E28609BB6AFF14' : true,
1827
<   'CBF04D84EDCCF90EDC1BB7FADC6995A4A956A9A6568F2605409BB2A782326D5A' : true,
1828
828a814
1829
>   'CC8E9439ED527517579A913E8489CA704B4370AE09A823D36431063C53609C82' : true,
1830
830,831c816
1831
<   'CC9DE9ACA31709D03188E3FE36B902288F56A3AD1510AAEBCE0881A363CB8B66' : true,
1832
<   'CCD4C850054C2E89024A8E78E337518B9137528B9190B9417E182E6CFA0180B9' : true,
1833
---
1834
>   'CCE21382C4DDCED2E4101F6FC5A1B8B76166EC8ECE79DBAA58F3339508B48CBF' : true,
1835
834,835c819,821
1836
<   'CE77D1F5ED11C8CA34DA5DBB0E999CAB0469D215552BCAE775B1AE6ED072F01B' : true,
1837
<   'CEB1ADB71C3CBA6FD012A778BF70CC93BEAB621B4DA4A464934C5440868E58C7' : true,
1838
---
1839
>   'CDEA4B65584E4EA2889F73E5907E95849BC6A2CA76B17EAD2B1FC7368193B550' : true,
1840
>   'CED6501D3B06CDB7033EE79351EC3080BBC2993D0991AB91325DFC0550689AA7' : true,
1841
>   'CEDFCE64CD03E3F512AC1CB6EE68C26F7C48C6753E8708E3A7D5AC867BA3ADC6' : true,
1842
839d824
1843
<   'CF41907FD2550A0AAFF0E09AF82423DCFDFE470F225A003D607C19F709A591CC' : true,
1844
841d825
1845
<   'CFDC25BD3A406CC65DF19685CB300D33E13AB2F2064BE7071ECA3A6F76AA3215' : true,
1846
844d827
1847
<   'D004BA3611B7EE32714173A1C1C5EDF071902F49D67542EB4310D6BA34B33DC8' : true,
1848
845a829,831
1849
>   'D07441504C544C3C3374E4314A2FB91266585AE94460B2FBE5CD4292556CA20D' : true,
1850
>   'D0DA9A42796D063B8246DC549D1CDD1D64B0AEF50E7094F0A29F243B51012DC7' : true,
1851
>   'D0F94901C782E50EA3A7B7300F6D9A113E45B5DA8944E956CE6629AF9C4C92B2' : true,
1852
848a835,836
1853
>   'D207EED2218BA7CF564AD049677741A526B9ECB5BBB23CAF2B817A3B0085F004' : true,
1854
>   'D277E65331EFA2A6668143F8BC5334AF870208332990F977BD7F3588689F4686' : true,
1855
850d837
1856
<   'D3946220D26CD68E238632CD7AD63FD62669D9F60770C62788747C7552AEFC8B' : true,
1857
855a843,845
1858
>   'D4CB5B06AF9ABEBF5639377BF36B289CA95A3205A84537D36B4506DF51430669' : true,
1859
>   'D52C9B39197E2769C185EC17A56A6E7890CDB1D0B18D15F65FA3B52E94DE94F7' : true,
1860
>   'D5846E29C203E6EAFF8D474085653A1F9E2E123C4E9E8C1172D1CB62474789E4' : true,
1861
857a848
1862
>   'D60AFE53C8CF92DC2D9E8DD1E4003246A16A692A1F619426CE43EEE621319BCE' : true,
1863
858a850
1864
>   'D666DA4D49E47B079AD7864678B4807D5CA035B3FDA103926CEFD053F50E5F2B' : true,
1865
860c852,854
1866
<   'D74E275CC5800C7DA6D65C11F4FDF07B81EAC91D412D05EA64C928E035F1C129' : true,
1867
---
1868
>   'D7632272521683A38E88A18C2CC6AED79B2C5E854483BDB6EE83D82BF41B96CA' : true,
1869
>   'D780EB94814F0CE1AD1A2F8A1EFD6170C019F0B446E726C7C874C0730E59FF1C' : true,
1870
>   'D80A44887D03596492FC8CBFEA9878F46AFFEF1E077645169B129C419D3E8C6E' : true,
1871
863c857
1872
<   'D8B6CC82BEA51A5BDEBA5B3B046B0D1965528CCF70B8F7D27E57A99CDD87D226' : true,
1873
---
1874
>   'D86562629BA86C435C0965C4AC302160729F27804FEBA36E211F96CDEFB5DF8E' : true,
1875
865c859,860
1876
<   'D9AC7500E87D9DCB4397D3707594267602061F590BEF6DF84CC507412FC43902' : true,
1877
---
1878
>   'D904379306D37F489337D71508E1CA3FE9FDC8188286D24265D3437BC069EA15' : true,
1879
>   'D9E191EC52F4ECE1E0C43968EAD53E421ED62A7A7DBC0C39ECB2B8FF7962F01C' : true,
1880
869d863
1881
<   'DA5110BB1526CBA9E86FBC66B91A8A2880E85440765C9208A1FF4D3DF2E8AD65' : true,
1882
873c867
1883
<   'DAF6B7470355545FF9FF41E11016056CBD9537558F503D7F9C049C8ACC446112' : true,
1884
---
1885
>   'DAFB1BB231A0D93B70726F2D3D8D8C8C54EFFCD901BB415C7A85AF02D09AA2A4' : true,
1886
875a870
1887
>   'DB995D854C4EDEF4DB5CCF20B2B30719056F3EDAA0CCF4B9D9C5C898407C5C7A' : true,
1888
878c873
1889
<   'DC04E4E5B03D875F796835B599AE226470B9ACDAF0DC79AB2F766B77AC59F3E5' : true,
1890
---
1891
>   'DBCB7851A6EC87DF3B603CDC26C5A9F958C8AE75485E1649A7CEF218B4E4D5BE' : true,
1892
881a877
1893
>   'DCDE97B03688D8CB9F603AEF4D97110A38679F8EE01975E4B0B55855E4A8DD05' : true,
1894
882a879
1895
>   'DD10B2E1AFF8298CC67F58955608C74ECE657F1DEEC77D6C465C1C7D2C8D26D9' : true,
1896
885,886d881
1897
<   'DD98420C927FBBBB0F2D1FFFFF359416FB7B352770A6550E3D68BA33CC23ED57' : true,
1898
<   'DDF758753965C89E747CA6799902A045B22F473F654CEDB51B3C0CA0EA01BB51' : true,
1899
890d884
1900
<   'DEB6A31937F3D2822CFA6C563F00F107DB6A445596E8B775D989500FF2E09F0F' : true,
1901
893d886
1902
<   'DF03F73A71A568E6A05A7E9FCE240EC0254EE86E24790D6DFCCDC71A5763C27C' : true,
1903
895a889
1904
>   'DF533C33DB800394971D608B89269426D3A2F58B76F190229C0573985E4F7CB8' : true,
1905
897,899d890
1906
<   'DF86C03A5DE71075F0F3AEE3A0951A55321BAC33642847CD1EFA0334DBAAE148' : true,
1907
<   'DFB9975C6CB5E5E0A555789055A543460C93C34378BD0565339A0194D56CE58B' : true,
1908
<   'DFD291C1074E972A9FE6261BE6FFDDA85472A8AA7F543C867F53B7D8946478DB' : true,
1909
908a900
1910
>   'E1A583C63BCEBAC1136939B65CBD0E6DBD7493EA45910275D56E0E2DE209D2BF' : true,
1911
910d901
1912
<   'E1CB2358E3FB5CE1135999465778BB5E6691353751FE577C1B032DF832532A8A' : true,
1913
911a903,905
1914
>   'E276249DEAEA8F9B735592C3355A2E3822F67A5979A3CCA988F98EBEEB2A8309' : true,
1915
>   'E276DC254DCFC8C0F2752221EE5D59EC0C86E714522A6600DB67A05E22E01740' : true,
1916
>   'E27966B8B9C67C751F9AB8315D0BD1CEE334D96A8C5F60C764070EF8B8FCE61A' : true,
1917
913a908
1918
>   'E30234ADF36D445F582C956B26E63BB76FF13FE90048CE1F37B40285BAE6529D' : true,
1919
915,916d909
1920
<   'E335D8CABE2F4940CA80CA10A6BE55A138A163E1C56C281165FBA3FA601C61A9' : true,
1921
<   'E3570B254ED1BFACE2C2CFB35A3AF277C8F26A81D1212BEC92CFD84A35FCB53B' : true,
1922
918a912,914
1923
>   'E40B4275F6249EF4CDDE56EBB983AF4DE4C9A811B4095F8E9F700FA18C951759' : true,
1924
>   'E43EB6A898FEB796E084C684078E8683417373F468EB087D4130EC6BD7A8510A' : true,
1925
>   'E469E3D28BF6AB0280F989BA50C11FF4D9EE608BAD2282219A5C4E60C0AD348E' : true,
1926
920,922c916
1927
<   'E549DACF42BED70415999CB677AD037F972087B39E6B2C20BBF2E3473AC8BB49' : true,
1928
<   'E5E61E81BD6BDB914235B1C227E3FEB83091ED8F453F0897035EA775A7DD9334' : true,
1929
<   'E5FA7806C1E6122EE6F7B008711DAF068DC6FDE60B2A5877DDEECA8A23F96586' : true,
1930
---
1931
>   'E4F069C24D7162E3C94AB295EA33C8926BDDF79934CA28D8982A35650EB60B05' : true,
1932
924a919
1933
>   'E756F7776AE92525EABD29B4CE8963EDE748438DE24393263F2118D77CC77C74' : true,
1934
925a921,922
1935
>   'E7F4465713E093B4F7D970C89ED3A5E745457B80A974523648F07C6AAFCDC86C' : true,
1936
>   'EA64F2625FAFE2EC122B493D4754C2B090153F167213AB6F07A87C1D993E5292' : true,
1937
928c925,926
1938
<   'EAE734ABC9AB7F65DF19ABE693F0C1AA6AF5E9C76561F0779D523FA5ABC6A3B4' : true,
1939
---
1940
>   'EB11019A7642C75F4DDC1DC9CF3B469BFB4C44B71C615693C73175F16DCA036C' : true,
1941
>   'EB17EADBF0EA09B71BADD853CED1E5170C3A2D9FDE4F5C4A0EEC93E44C4B442C' : true,
1942
930d927
1943
<   'EB6B1F16F70E3080F38E7ADDC7E3AB69164ECD068F5E8F15931575FDD62B0A64' : true,
1944
932d928
1945
<   'EB907252FF62CCF97B16796B9106686C4260E682878EFCA7721D37D6B8C83319' : true,
1946
933a930
1947
>   'EBABE928B643E1B9FD6F61D67ACC4BA6A9BFCC95927D31D265F701AC4613B9AE' : true,
1948
935d931
1949
<   'EC173388B04C066ED8A36DB45C804E353EF6BEEC7BBDCEF4C28DEFDE917A0C5B' : true,
1950
938a935,936
1951
>   'ECA7333D185C924CBADF8CD96EEFA90F63B12225555B3C72631C841AA37BA917' : true,
1952
>   'ECB0646FEF13F818B1ACD2A8AFE448F3B39EC0EF6F623175931C48DC386EAF73' : true,
1953
939a938
1954
>   'ED918BDFDFCB9E4E679BC7C1938F9CE412AA85500BA3531FC550AD5213D5BDC7' : true,
1955
941,943d939
1956
<   'EDEEE393369C2968B2277F06C24CBB9ADFC6D3EAAB264C292A7963065C8FAA49' : true,
1957
<   'EE3B7480B691828ABEBECA3DB0EE96619F01E886FC959942F6AB7EB3D263A237' : true,
1958
<   'EE49B2B0E38A16743525D6CEE70CB71038D43094BC71BE2EEE861E4602B6D891' : true,
1959
947,949d942
1960
<   'F08A2008114880DE65D1C1A47D55DB0B1EC6029562BA7B8976A78507F4EB80B2' : true,
1961
<   'F094E7890A2B177AB1517C2EAA8D1DF0F69DB94633C4A510BC02CA8D71B36403' : true,
1962
<   'F096047E3E971271396DB89324E82438A446B4E85F86EDE684AD7DBB14B3C93A' : true,
1963
952d944
1964
<   'F0DC85D554A245F0146851FB8FCAB6CE5F955E65ACCAAC92E875F8B8E1E2495A' : true,
1965
954a947
1966
>   'F11BB294EAD89BC4AAB21DD82BA85FFA6573215720E347D687D6D5D89EE33EEF' : true,
1967
957d949
1968
<   'F1A9F7B5F76EC4E234A078662581DE91E76B1CF83C219986D1BEA3717E4513A6' : true,
1969
959d950
1970
<   'F1EC4F6CADD8B97B55AEF8AFDF69AA2261D10B641023C4F8CC895E5F26301D3E' : true,
1971
960a952
1972
>   'F20CBF1FC073F7E7DEBC38DFE2042E2CDC5D82898773D6283C680A3BC966BC02' : true,
1973
963a956,957
1974
>   'F2C91876EDB36EAD7E4821C2A6581144F1E5A67B2DEF4A5E4AFDF79F5E1CC4D7' : true,
1975
>   'F35B9D7C54418022E6FD4FDFE88C3261FD138329A11C013AD640145D40BE934A' : true,
1976
965c959
1977
<   'F39D175463288D9639AE5C852B945D89ED858548F8621E5DDC29853E8C84BE36' : true,
1978
---
1979
>   'F3CA880E8CF918E29D956A8306A2A0EB9CF76E82135F60A9885033E22B7874E8' : true,
1980
968c962
1981
<   'F4F3D03488B8B699725AEBCF9033B73C8997AED2D4504891EE4FFAC3E7CB4272' : true,
1982
---
1983
>   'F49BADFFBB2D2836A995A12E44ECF62E584F1B8D0740E0EDC7610C0C6765CDAA' : true,
1984
970a965
1985
>   'F5B19B2D5D880A4C1ADECA3D760FCB7E75FC2137B2EC99F3EEE034ADF788BADB' : true,
1986
971a967
1987
>   'F5D715B6BE56D1A677ECBF7C26B4D79716F5EC2D2E2EC323ABDFE3442F40BD31' : true,
1988
972a969
1989
>   'F5FAC17F4DDD973352CBCD311E21AE81EEFA06150CE85B8C32126D7F1661EDA0' : true,
1990
975c972
1991
<   'F6D424B2B0304F80F9F57E9A501576769B75304FFB569A1118B9B0D5E72561C6' : true,
1992
---
1993
>   'F6B9B7A36ADF7095D44420CCDCE4A739926841BC695ED40E78856D8F71D41257' : true,
1994
978c975
1995
<   'F7835EBD5236BECAB435AE25E9D79BB389DFA8462D552965A2B901ED70B4FF79' : true,
1996
---
1997
>   'F7FC63254BF2472575C6D5DEC8DDF02B24B6F1BDCE03D807B159A69820262D4A' : true,
1998
982,983d978
1999
<   'F99371163EC08FF74F0742422AC3108264DCCAAD1A731A5CD5CDCA9FAE8EAEE0' : true,
2000
<   'F9AA3378654B8DAE243713E502260C71E88F8AD2B7021072A02574D09E34D1A0' : true,
2001
984a980,982
2002
>   'FA0E3BFAEEA2FBC6A9E4A33EB6F289EF6C35228008ABAD3878AC4B2C8E87F957' : true,
2003
>   'FA1B8F32DE3B7F4ACA8FEF5414B5D985FE3705D0E3371D4FE4AF46698B68B01B' : true,
2004
>   'FA500D7B8D9BED2323488F83C9A6093C012143DEE3E453C1F75738625571E708' : true,
2005
987d984
2006
<   'FAA02D9B700650AAA34F4BDDA8882618BDBF954078A7B4796FD76B7961DE964C' : true,
2007
991a989
2008
>   'FB52A9B5EB7A494C06FB5CE4BB4505F32D6C666931AF2A018E6066244802A00D' : true,
2009
993a992
2010
>   'FBCC79E05CC135E183F4963C2A206F9DFDBC2DD0D379A743D5FB301741796921' : true,
2011
996a996,998
2012
>   'FCABE5BABEB2D2785BBA66B5D465FAF9F9A8E74E77AC1161273F49F4261F17B3' : true,
2013
>   'FCC12514DEB82E09AFF7A8B73DAC3CF80683D447101F048804D0B1100169D87E' : true,
2014
>   'FCF4BA663F0032118EADF9D327B65AB502C7A8B336462A397238884E9A28508E' : true,
2015
998,999c1000
2016
<   'FDF0D11B28F98D542D2D0B2658C0CB0CB46E5E155398B8739AD968944B4C41FB' : true,
2017
<   'FE739A748FB17DAFB6CBA0DA5B2164B8E0435E8DA7FB85E7970BBE731B428631' : true,
2018
---
2019
>   'FE4A5357D197340536C61A1493D6EB64732D628B4435BCF43A1D52BCC5BF4CFD' : true,
2020
1001,1002c1002,1003
2021
<   'FF3E77DFF8C24FE2DC89CE8757B6AE9ACBB838D35AEBDBD9A29D099E211380BB' : true,
2022
<   'FF5A1D7B021E92D968CCB4D6955A6A8449BF13D75D9EEB1CF36BEC3A178DB9DE' : true,
2023
---
2024
>   'FEFEF80071B0D8E2B57D6601BB353A435A425EAA701827370C3585CE09F2CE50' : true,
2025
>   'FF7B4EA9730875FF721ACEB86B327F7A6FB57A203B061CC3A4048E1D68F828B9' : true,
2026
1005d1005
2027
<   'FFB09E8C7F4CCA88C213AF60CD7047B85A6085DA93C7C3C7D3B73C57FA05702F' : true,
2028
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: fetch-source.js
2029
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: fetch-source.xul
2030
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: preferences.css
2031
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: preferences.js
2032
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: preferences.xul
2033
Only in src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: rulesets.sqlite
2034
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: ruleset-tests.js
2035
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: ruleset-tests-status.css
2036
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: ruleset-tests-status.js
2037
Only in src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/content: ruleset-tests-status.xul
2038
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/skin/https-everywhere.css src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome/skin/https-everywhere.css
2039
34c34
2040
<   margin: 3px -12px 0 -8px;
2041
---
2042
>   margin: 3px -12px 0 -8px; 
2043
37d36
2044
<   box-sizing: border-box;
2045
49d47
2046
<   box-sizing: border-box;
2047
53c51
2048
<   border-width: 1px;
2049
---
2050
>   border-width: 1px; 
2051
55c53
2052
<   padding: 1px 1px 1px 1px;
2053
---
2054
>   padding: 1px 1px 1px 1px; 
2055
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome.manifest src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/chrome.manifest
2056
51,57d50
2057
< locale https-everywhere ar-AA chrome/locale/ar_AA/
2058
< locale https-everywhere bal chrome/locale/bal/
2059
< locale https-everywhere brx chrome/locale/brx/
2060
< locale https-everywhere ceb chrome/locale/ceb/ 
2061
< locale https-everywhere co chrome/locale/co/  
2062
< locale https-everywhere da-DK chrome/locale/da-DK/
2063
< 
2064
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/components/https-everywhere.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/components/https-everywhere.js
2065
249c249,250
2066
<       Components.interfaces.nsISupportsWeakReference ]),
2067
---
2068
>       Components.interfaces.nsISupportsWeakReference,
2069
>       Components.interfaces.nsIChannelEventSink ]),
2070
603c604
2071
<     // Recover from a past UI processing bug that would leave the Observatory
2072
---
2073
>     // Recover from a past UI processing bug that would leave the Obsevatory
2074
643a645,657
2075
>   // nsIChannelEventSink implementation
2076
>   // XXX This was here for rewrites in the past.  Do we still need it?
2077
>   onChannelRedirect: function(oldChannel, newChannel, flags) {  
2078
>     const uri = newChannel.URI;
2079
>     this.log(DBUG,"Got onChannelRedirect to "+uri.spec);
2080
>     if (!(newChannel instanceof CI.nsIHttpChannel)) {
2081
>       this.log(DBUG, newChannel + " is not an instance of nsIHttpChannel");
2082
>       return;
2083
>     }
2084
>     var alist = this.juggleApplicableListsDuringRedirection(oldChannel, newChannel);
2085
>     HTTPS.replaceChannel(alist, newChannel, this.httpNowhereEnabled);
2086
>   },
2087
> 
2088
664a679,683
2089
>   asyncOnChannelRedirect: function(oldChannel, newChannel, flags, callback) {
2090
>         this.onChannelRedirect(oldChannel, newChannel, flags);
2091
>         callback.onRedirectVerifyCallback(0);
2092
>   },
2093
> 
2094
836c855
2095
<     // dump() prints to browser stdout. That's sometimes undesirable,
2096
---
2097
>     // dump() prints to browser stdout. That's sometimes undesireable,
2098
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/components/ssl-observatory.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/components/ssl-observatory.js
2099
197c197
2100
<       this.log(WARN, "Suppressing observatory warning");
2101
---
2102
>       this.log(WARN, "Surpressing observatory warning");
2103
844c844
2104
<      * localhost:9050 is a better bet.  People whose networks send all traffic through Tor can just
2105
---
2106
>      * localhost:9050 is a better bet.  People whose networks send all traffc through Tor can just
2107
927c927
2108
<       // dump() prints to browser stdout. That's sometimes undesirable,
2109
---
2110
>       // dump() prints to browser stdout. That's sometimes undesireable,
2111
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/defaults/preferences/preferences.js src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/defaults/preferences/preferences.js
2112
26c26
2113
< // "testing" currently means send unnecessary fingerprints and other test-suite
2114
---
2115
> // "testing" currently means send unecessary fingerprints and other test-suite
2116
Binary files src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/defaults/rulesets.sqlite and src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/defaults/rulesets.sqlite differ
2117
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/install.rdf src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/install.rdf
2118
7c7
2119
<         <em:creator>EFF Technologists</em:creator>
2120
---
2121
>         <em:creator>Mike Perry, Peter Eckersley, &amp; Yan Zhu</em:creator>
2122
12c12
2123
<         <em:version>5.1.3asyncbeta1</em:version>
2124
---
2125
>         <em:version>5.1.1</em:version>
2126
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/manifest.mf src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/manifest.mf
2127
5,6c5,6
2128
< MD5-Digest: n3swdbZqTspH7hBuvUdAsw==
2129
< SHA1-Digest: fKMrjLm98153m0HSwT0IsgGu0Hc=
2130
---
2131
> MD5-Digest: laCJ1qvV56BP/zJ+pAUQxg==
2132
> SHA1-Digest: NuPfXjb4Tu0u2OIhu0nz9eF+AWA=
2133
10,11c10,11
2134
< MD5-Digest: LmFF7mWJVEwIhVgC9HCLvg==
2135
< SHA1-Digest: eSHArJYpvjJ+cLzwLL0CpMI5zm4=
2136
---
2137
> MD5-Digest: rZZ7yvZZGLdL4lBT62CRZw==
2138
> SHA1-Digest: qpuVi0r02Psyx216gmgPVqJEUB8=
2139
15,16c15,16
2140
< MD5-Digest: MERZfj/fnP/H66SnZDSHLg==
2141
< SHA1-Digest: UOz3NkmOuV8CgjydnZ6pHsh9FHA=
2142
---
2143
> MD5-Digest: FP3Ax5ALL5uMeEnN+aRi3A==
2144
> SHA1-Digest: t0J3+QnD/mZa55otq1c7RRuAwlc=
2145
25,26c25,26
2146
< MD5-Digest: 4cvlvZYctogbxeAnZ1btcg==
2147
< SHA1-Digest: hLYaBc0aPOjrAcRNGQ/kHnhn3Tk=
2148
---
2149
> MD5-Digest: 0Q5QWjpzv6ug/3jHowymwA==
2150
> SHA1-Digest: GSNVm5xUXaphb41qtB00SXOQmA0=
2151
53,57d52
2152
< Name: chrome/content/rulesets.sqlite
2153
< Digest-Algorithms: MD5 SHA1
2154
< MD5-Digest: 1B2M2Y8AsgTpgAmY7PhCfg==
2155
< SHA1-Digest: 2jmj7l5rSw0yVb/vlWAYkK/YBwk=
2156
< 
2157
80,81c75,76
2158
< MD5-Digest: Ua15uHW3g7awXYulVD5tVg==
2159
< SHA1-Digest: IyTybu4CqRb9RKaBwGvfm4XGx+c=
2160
---
2161
> MD5-Digest: 3J8kzqjLvrAkR6CszNKsag==
2162
> SHA1-Digest: xKlpXgS+iCm9yxc0ZXfb4se1bQc=
2163
95,96c90,91
2164
< MD5-Digest: bPUtnMDofk3IQ5s2mR07bQ==
2165
< SHA1-Digest: HP4rIjK8yX0O3F3C51SC0yU6sKs=
2166
---
2167
> MD5-Digest: PjqIt54QbHdk4CkCjfvskw==
2168
> SHA1-Digest: XIW4ZQt1P9u9N+T6yS5oa6SaB08=
2169
100,101c95,96
2170
< MD5-Digest: LSagPkrdaU0CGbPeZWb3Yw==
2171
< SHA1-Digest: Bj6eESOvsfKJjkHvW5oTdLH6i2M=
2172
---
2173
> MD5-Digest: s76BQeSd66O0S14U9Xrg0w==
2174
> SHA1-Digest: 3Fi+uQVk10oG5p3qK0VezA30KFw=
2175
105,106c100,101
2176
< MD5-Digest: t0q7gX/Qq1/G+qHZghUKKg==
2177
< SHA1-Digest: DfxMukjInV2iCcLJYn1krIHMB4Y=
2178
---
2179
> MD5-Digest: Q5w8DgZk0cZpyBMMpIfO1g==
2180
> SHA1-Digest: ECKctZABDHx+hMJtaSRTYAZ+2+A=
2181
110,111c105,106
2182
< MD5-Digest: mqoO7Tm3nNNXYwrI1UFRAQ==
2183
< SHA1-Digest: +mi3/aKIyWaWyTDyq8VJDCKdah8=
2184
---
2185
> MD5-Digest: B0hSLngHeCNzYEjlCV7VIA==
2186
> SHA1-Digest: vdvJRg2qSwNi0B6XDE6/SelVUqI=
2187
125,126c120,121
2188
< MD5-Digest: R2QhdaCMFSncfLgxr/TqCQ==
2189
< SHA1-Digest: HhKUrkYPwe6h4mxkePkHCL9z8JI=
2190
---
2191
> MD5-Digest: JIjqgTDiupq8QqrVuki0AA==
2192
> SHA1-Digest: mh2DCtzp2ISltw0WXLQNekM9uPs=
2193
2765,2766c2760,2761
2194
< MD5-Digest: w7RaAPQ5rFa3UpF6x7i8Aw==
2195
< SHA1-Digest: aJpwEdeUsLumou6liieVzZKnKwU=
2196
---
2197
> MD5-Digest: U5sreUDk5IRxECkJrHIGHg==
2198
> SHA1-Digest: Y0XVRNzGkJKL89rotsgGv3jrlDY=
2199
2795,2796c2790,2791
2200
< MD5-Digest: Qq9+ZwHVAY/IRSX3S+tnsA==
2201
< SHA1-Digest: Ng1PJvAHuw4enUJ708WSEVBZJp0=
2202
---
2203
> MD5-Digest: sFC5jhvyH2qyuDMAcrXNqQ==
2204
> SHA1-Digest: YAG+JSJqgXlaxhHHtx8/kIZxFjY=
2205
2800,2801c2795,2796
2206
< MD5-Digest: VkxnmOECY3iA4I2qwmtFAQ==
2207
< SHA1-Digest: oBmcXxRUjEapg6wrdmxxt5TgGzw=
2208
---
2209
> MD5-Digest: dKSOqxTZFjH4JhX84WXtXQ==
2210
> SHA1-Digest: LGQm7JL+K7OXvISV2ej0/QFJqjo=
2211
2805,2806c2800,2801
2212
< MD5-Digest: tr3MfX1jmcJztX9H8jWd5g==
2213
< SHA1-Digest: pQeoH7Ly5pvpTEx7D8Ni5JzhZxY=
2214
---
2215
> MD5-Digest: 9jhEKPwFM8ZDm0bRGakI/w==
2216
> SHA1-Digest: QCSXSthBbHp7BiMO3ioKJk8MTT8=
2217
2810,2811c2805,2806
2218
< MD5-Digest: EykkJFjpsNoGf/s2FXYWgw==
2219
< SHA1-Digest: Y65sMAe8/tAhvaVWqnvGN1fyesc=
2220
---
2221
> MD5-Digest: Hvk31b+DjMnRcUxHQEX+zw==
2222
> SHA1-Digest: 0IkerBi6u7H08qlyjijIJ6cwvdY=
2223
Binary files src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/mozilla.rsa and src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/mozilla.rsa differ
2224
diff -r src.gnu/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/mozilla.sf src.parabola/icecat-38.6.0/extensions/gnu/https-everywhere-eff@eff.org/META-INF/mozilla.sf
2225
2,3c2,3
2226
< MD5-Digest-Manifest: cZX/farBYRussiEncmy7sw==
2227
< SHA1-Digest-Manifest: 8xZJEAVUmMzYExTchp0gT//LRSU=
2228
---
2229
> MD5-Digest-Manifest: vbpn/nBFmE05CaCJoguRPw==
2230
> SHA1-Digest-Manifest: BAveeiq1RF0sEUaGHlHtESNt/eM=
2231
Binary files src.gnu/icecat-38.6.0/layout/tools/reftest/mach_commands.pyc and src.parabola/icecat-38.6.0/layout/tools/reftest/mach_commands.pyc differ
2232
Binary files src.gnu/icecat-38.6.0/mobile/android/mach_commands.pyc and src.parabola/icecat-38.6.0/mobile/android/mach_commands.pyc differ
2233
Binary files src.gnu/icecat-38.6.0/python/blessings/blessings/__init__.pyc and src.parabola/icecat-38.6.0/python/blessings/blessings/__init__.pyc differ
2234
Binary files src.gnu/icecat-38.6.0/python/jsmin/jsmin/__init__.pyc and src.parabola/icecat-38.6.0/python/jsmin/jsmin/__init__.pyc differ
2235
Binary files src.gnu/icecat-38.6.0/python/mach/mach/base.pyc and src.parabola/icecat-38.6.0/python/mach/mach/base.pyc differ
2236
Binary files src.gnu/icecat-38.6.0/python/mach/mach/commands/commandinfo.pyc and src.parabola/icecat-38.6.0/python/mach/mach/commands/commandinfo.pyc differ
2237
Binary files src.gnu/icecat-38.6.0/python/mach/mach/config.pyc and src.parabola/icecat-38.6.0/python/mach/mach/config.pyc differ
2238
Binary files src.gnu/icecat-38.6.0/python/mach/mach/decorators.pyc and src.parabola/icecat-38.6.0/python/mach/mach/decorators.pyc differ
2239
Binary files src.gnu/icecat-38.6.0/python/mach/mach/dispatcher.pyc and src.parabola/icecat-38.6.0/python/mach/mach/dispatcher.pyc differ
2240
Binary files src.gnu/icecat-38.6.0/python/mach/mach/__init__.pyc and src.parabola/icecat-38.6.0/python/mach/mach/__init__.pyc differ
2241
Binary files src.gnu/icecat-38.6.0/python/mach/mach/logging.pyc and src.parabola/icecat-38.6.0/python/mach/mach/logging.pyc differ
2242
Binary files src.gnu/icecat-38.6.0/python/mach/mach/main.pyc and src.parabola/icecat-38.6.0/python/mach/mach/main.pyc differ
2243
Binary files src.gnu/icecat-38.6.0/python/mach/mach/mixin/__init__.pyc and src.parabola/icecat-38.6.0/python/mach/mach/mixin/__init__.pyc differ
2244
Binary files src.gnu/icecat-38.6.0/python/mach/mach/mixin/logging.pyc and src.parabola/icecat-38.6.0/python/mach/mach/mixin/logging.pyc differ
2245
Binary files src.gnu/icecat-38.6.0/python/mach/mach/mixin/process.pyc and src.parabola/icecat-38.6.0/python/mach/mach/mixin/process.pyc differ
2246
Binary files src.gnu/icecat-38.6.0/python/mach/mach/registrar.pyc and src.parabola/icecat-38.6.0/python/mach/mach/registrar.pyc differ
2247
Binary files src.gnu/icecat-38.6.0/python/mach_commands.pyc and src.parabola/icecat-38.6.0/python/mach_commands.pyc differ
2248
Binary files src.gnu/icecat-38.6.0/python/mozboot/mozboot/mach_commands.pyc and src.parabola/icecat-38.6.0/python/mozboot/mozboot/mach_commands.pyc differ
2249
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/base.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/base.pyc differ
2250
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/common.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/common.pyc differ
2251
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/configenvironment.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/configenvironment.pyc differ
2252
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/cpp_eclipse.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/cpp_eclipse.pyc differ
2253
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/__init__.pyc differ
2254
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/backend/mach_commands.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/backend/mach_commands.pyc differ
2255
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/base.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/base.pyc differ
2256
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/compilation/codecomplete.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/compilation/codecomplete.pyc differ
2257
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/controller/clobber.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/controller/clobber.pyc differ
2258
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/controller/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/controller/__init__.pyc differ
2259
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/context.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/context.pyc differ
2260
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/data.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/data.pyc differ
2261
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/__init__.pyc differ
2262
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/mach_commands.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/mach_commands.pyc differ
2263
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/reader.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/reader.pyc differ
2264
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/frontend/sandbox.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/frontend/sandbox.pyc differ
2265
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/__init__.pyc differ
2266
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/mach_commands.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/mach_commands.pyc differ
2267
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/makeutil.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/makeutil.pyc differ
2268
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/mozconfig.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/mozconfig.pyc differ
2269
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/preprocessor.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/preprocessor.pyc differ
2270
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/pythonutil.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/pythonutil.pyc differ
2271
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/util.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/util.pyc differ
2272
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozbuild/virtualenv.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozbuild/virtualenv.pyc differ
2273
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/chrome/flags.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/chrome/flags.pyc differ
2274
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/chrome/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/chrome/__init__.pyc differ
2275
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/chrome/manifest.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/chrome/manifest.pyc differ
2276
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/errors.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/errors.pyc differ
2277
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/executables.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/executables.pyc differ
2278
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/files.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/files.pyc differ
2279
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/__init__.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/__init__.pyc differ
2280
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/mozjar.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/mozjar.pyc differ
2281
Binary files src.gnu/icecat-38.6.0/python/mozbuild/mozpack/path.pyc and src.parabola/icecat-38.6.0/python/mozbuild/mozpack/path.pyc differ
2282
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/common.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/common.pyc differ
2283
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/context.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/context.pyc differ
2284
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/defaults.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/defaults.pyc differ
2285
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/__init__.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/__init__.pyc differ
2286
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/init.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/init.pyc differ
2287
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/loader.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/loader.pyc differ
2288
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/locator.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/locator.pyc differ
2289
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/parsed.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/parsed.pyc differ
2290
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/parser.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/parser.pyc differ
2291
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/renderengine.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/renderengine.pyc differ
2292
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/renderer.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/renderer.pyc differ
2293
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/specloader.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/specloader.pyc differ
2294
Binary files src.gnu/icecat-38.6.0/python/pystache/pystache/template_spec.pyc and src.parabola/icecat-38.6.0/python/pystache/pystache/template_spec.pyc differ
2295
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/composer.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/composer.pyc differ
2296
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/constructor.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/constructor.pyc differ
2297
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/cyaml.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/cyaml.pyc differ
2298
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/dumper.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/dumper.pyc differ
2299
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/emitter.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/emitter.pyc differ
2300
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/error.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/error.pyc differ
2301
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/events.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/events.pyc differ
2302
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/__init__.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/__init__.pyc differ
2303
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/loader.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/loader.pyc differ
2304
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/nodes.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/nodes.pyc differ
2305
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/parser.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/parser.pyc differ
2306
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/reader.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/reader.pyc differ
2307
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/representer.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/representer.pyc differ
2308
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/resolver.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/resolver.pyc differ
2309
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/scanner.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/scanner.pyc differ
2310
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/serializer.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/serializer.pyc differ
2311
Binary files src.gnu/icecat-38.6.0/python/pyyaml/lib/yaml/tokens.pyc and src.parabola/icecat-38.6.0/python/pyyaml/lib/yaml/tokens.pyc differ
2312
Binary files src.gnu/icecat-38.6.0/python/which/which.pyc and src.parabola/icecat-38.6.0/python/which/which.pyc differ
2313
Binary files src.gnu/icecat-38.6.0/services/common/tests/mach_commands.pyc and src.parabola/icecat-38.6.0/services/common/tests/mach_commands.pyc differ
2314
Binary files src.gnu/icecat-38.6.0/testing/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/mach_commands.pyc differ
2315
Binary files src.gnu/icecat-38.6.0/testing/marionette/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/marionette/mach_commands.pyc differ
2316
Binary files src.gnu/icecat-38.6.0/testing/mochitest/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/mochitest/mach_commands.pyc differ
2317
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozfile/mozfile/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozfile/mozfile/__init__.pyc differ
2318
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozfile/mozfile/mozfile.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozfile/mozfile/mozfile.pyc differ
2319
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozinfo/mozinfo/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozinfo/mozinfo/__init__.pyc differ
2320
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozinfo/mozinfo/mozinfo.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozinfo/mozinfo/mozinfo.pyc differ
2321
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/__init__.pyc differ
2322
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/logger.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/logger.pyc differ
2323
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/loggingmixin.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/loggingmixin.pyc differ
2324
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/loglistener.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/loglistener.pyc differ
2325
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/commandline.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/commandline.pyc differ
2326
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/base.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/base.pyc differ
2327
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/html/html.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/html/html.pyc differ
2328
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/html/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/html/__init__.pyc differ
2329
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/__init__.pyc differ
2330
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/machformatter.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/machformatter.pyc differ
2331
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/tbplformatter.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/tbplformatter.pyc differ
2332
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/unittest.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/unittest.pyc differ
2333
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/xunit.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/formatters/xunit.pyc differ
2334
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/base.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/base.pyc differ
2335
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/bufferhandler.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/bufferhandler.pyc differ
2336
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/__init__.pyc differ
2337
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/statushandler.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/handlers/statushandler.pyc differ
2338
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/__init__.pyc differ
2339
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/logtypes.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/logtypes.pyc differ
2340
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/reader.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/reader.pyc differ
2341
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/structuredlog.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozlog/mozlog/structured/structuredlog.pyc differ
2342
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozprocess/mozprocess/__init__.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozprocess/mozprocess/__init__.pyc differ
2343
Binary files src.gnu/icecat-38.6.0/testing/mozbase/mozprocess/mozprocess/processhandler.pyc and src.parabola/icecat-38.6.0/testing/mozbase/mozprocess/mozprocess/processhandler.pyc differ
2344
Binary files src.gnu/icecat-38.6.0/testing/talos/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/talos/mach_commands.pyc differ
2345
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/mach_commands.pyc differ
2346
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/build_task.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/build_task.pyc differ
2347
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/commit_parser.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/commit_parser.pyc differ
2348
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/from_now.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/from_now.pyc differ
2349
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/__init__.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/__init__.pyc differ
2350
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/slugidjar.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/slugidjar.pyc differ
2351
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/slugid.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/slugid.pyc differ
2352
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/templates.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/templates.pyc differ
2353
Binary files src.gnu/icecat-38.6.0/testing/taskcluster/taskcluster_graph/try_test_parser.pyc and src.parabola/icecat-38.6.0/testing/taskcluster/taskcluster_graph/try_test_parser.pyc differ
2354
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/browsers/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/browsers/__init__.pyc differ
2355
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/config.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/config.pyc differ
2356
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/expected.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/expected.pyc differ
2357
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/__init__.pyc differ
2358
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestexpected.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestexpected.pyc differ
2359
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestinclude.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestinclude.pyc differ
2360
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestupdate.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/manifestupdate.pyc differ
2361
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/metadata.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/metadata.pyc differ
2362
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/products.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/products.pyc differ
2363
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/testloader.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/testloader.pyc differ
2364
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/base.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/base.pyc differ
2365
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/__init__.pyc differ
2366
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/metadata.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/metadata.pyc differ
2367
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/state.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/state.pyc differ
2368
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/sync.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/sync.pyc differ
2369
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/tree.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/tree.pyc differ
2370
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/update.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/update/update.pyc differ
2371
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/vcs.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/vcs.pyc differ
2372
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptcommandline.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptcommandline.pyc differ
2373
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/conditional.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/conditional.pyc differ
2374
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/__init__.pyc differ
2375
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/static.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/backends/static.pyc differ
2376
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/__init__.pyc differ
2377
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/node.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/node.pyc differ
2378
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/parser.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/parser.pyc differ
2379
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/serializer.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wptmanifest/serializer.pyc differ
2380
Binary files src.gnu/icecat-38.6.0/testing/web-platform/harness/wptrunner/wpttest.pyc and src.parabola/icecat-38.6.0/testing/web-platform/harness/wptrunner/wpttest.pyc differ
2381
Binary files src.gnu/icecat-38.6.0/testing/web-platform/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/web-platform/mach_commands.pyc differ
2382
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/github.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/github.pyc differ
2383
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/__init__.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/__init__.pyc differ
2384
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/tree.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/tree.pyc differ
2385
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/updatecommandline.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/updatecommandline.pyc differ
2386
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/update.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/update.pyc differ
2387
Binary files src.gnu/icecat-38.6.0/testing/web-platform/update/upstream.pyc and src.parabola/icecat-38.6.0/testing/web-platform/update/upstream.pyc differ
2388
Binary files src.gnu/icecat-38.6.0/testing/xpcshell/mach_commands.pyc and src.parabola/icecat-38.6.0/testing/xpcshell/mach_commands.pyc differ
2389
Binary files src.gnu/icecat-38.6.0/tools/docs/mach_commands.pyc and src.parabola/icecat-38.6.0/tools/docs/mach_commands.pyc differ
2390
Binary files src.gnu/icecat-38.6.0/tools/mach_commands.pyc and src.parabola/icecat-38.6.0/tools/mach_commands.pyc differ
2391
Binary files src.gnu/icecat-38.6.0/tools/mercurial/mach_commands.pyc and src.parabola/icecat-38.6.0/tools/mercurial/mach_commands.pyc differ
    (1-1/1)