From 1478b244aec17a3e92479d955481f6a3f498887b Mon Sep 17 00:00:00 2001 From: Pascal Huber Date: Wed, 26 Apr 2023 12:09:15 +0200 Subject: [PATCH 1/2] thunderbird: update to 102.10.1 --- .../thunderbird/patches/flac-no-ffvpx.patch | 3 +- srcpkgs/thunderbird/patches/lto-thin.patch | 21 +- srcpkgs/thunderbird/patches/mallinfo.patch | 24 +- srcpkgs/thunderbird/patches/python3.11.patch | 238 ------------------ .../thunderbird/patches/rust-configure.patch | 20 +- .../thunderbird/patches/sandbox-fork.patch | 11 +- srcpkgs/thunderbird/template | 6 +- 7 files changed, 47 insertions(+), 276 deletions(-) delete mode 100644 srcpkgs/thunderbird/patches/python3.11.patch diff --git a/srcpkgs/thunderbird/patches/flac-no-ffvpx.patch b/srcpkgs/thunderbird/patches/flac-no-ffvpx.patch index ebf48deb9720..2e475e8c6940 100644 --- a/srcpkgs/thunderbird/patches/flac-no-ffvpx.patch +++ b/srcpkgs/thunderbird/patches/flac-no-ffvpx.patch @@ -12,7 +12,7 @@ index 53fc3c9937f7..b23771ab80fa 100644 namespace mozilla { -@@ -14,6 +15,10 @@ namespace mozilla { +@@ -14,5 +15,9 @@ namespace mozilla { bool FlacDecoder::IsEnabled() { #ifdef MOZ_FFVPX return StaticPrefs::media_flac_enabled(); @@ -21,5 +21,4 @@ index 53fc3c9937f7..b23771ab80fa 100644 + return StaticPrefs::media_flac_enabled() && + platform->SupportsMimeType("audio/flac"_ns); #else - // Until bug 1295886 is fixed. return false; diff --git a/srcpkgs/thunderbird/patches/lto-thin.patch b/srcpkgs/thunderbird/patches/lto-thin.patch index e85cbce36583..17cd0a5e9458 100644 --- a/srcpkgs/thunderbird/patches/lto-thin.patch +++ b/srcpkgs/thunderbird/patches/lto-thin.patch @@ -1,15 +1,18 @@ -$OpenBSD: patch-config_makefiles_rust_mk,v 1.6 2021/01/26 15:52:58 landry Exp $ +This patch is a modified version of the OpenBSD patch -use lto=thin to reduce memory pressure when building gkrust +try to consume less memory when linking gkrust with debug symbols ? + +openbsd patch: https://github.com/openbsd/ports/blob/master/mail/mozilla-thunderbird/patches/patch-config_makefiles_rust_mk https://bugzilla.mozilla.org/show_bug.cgi?id=1644409 https://bugzilla.mozilla.org/show_bug.cgi?id=1640982 - -Index: config/makefiles/rust.mk ---- a/config/makefiles/rust.mk.orig -+++ a/config/makefiles/rust.mk -@@ -70,7 +70,8 @@ ifndef MOZ_DEBUG_RUST - # gkrust_gtest. And not when doing cross-language LTO. - ifndef MOZ_LTO_RUST_CROSS +--- +diff --git a/config/makefiles/rust.mk b/config/makefiles/rust.mk +index a243ee5f7f..89593f1fe1 100644 +--- a/config/makefiles/rust.mk ++++ b/config/makefiles/rust.mk +@@ -90,7 +90,8 @@ ifndef rustflags_sancov + # Never enable when coverage is enabled to work around https://github.com/rust-lang/rust/issues/90045. + ifndef MOZ_CODE_COVERAGE ifeq (,$(findstring gkrust_gtest,$(RUST_LIBRARY_FILE))) -cargo_rustc_flags += -Clto +cargo_rustc_flags += -Clto=thin diff --git a/srcpkgs/thunderbird/patches/mallinfo.patch b/srcpkgs/thunderbird/patches/mallinfo.patch index 0d704301f39f..a3b3e1cb53ac 100644 --- a/srcpkgs/thunderbird/patches/mallinfo.patch +++ b/srcpkgs/thunderbird/patches/mallinfo.patch @@ -1,14 +1,16 @@ ---- a/xpcom/base/nsMemoryReporterManager.cpp 2019-03-19 17:12:20.844810044 +0100 -+++ b/xpcom/base/nsMemoryReporterManager.cpp 2019-03-19 17:13:32.505133615 +0100 -@@ -123,6 +123,7 @@ - return GetProcSelfSmapsPrivate(aN); +diff --git a/xpcom/base/nsMemoryReporterManager.cpp b/xpcom/base/nsMemoryReporterManager.cpp +index 30bc60e01a..caf9f740d2 100644 +--- a/xpcom/base/nsMemoryReporterManager.cpp ++++ b/xpcom/base/nsMemoryReporterManager.cpp +@@ -127,6 +127,7 @@ using namespace dom; + return GetProcSelfSmapsPrivate(aN, aPid); } +#ifdef __GLIBC__ # ifdef HAVE_MALLINFO # define HAVE_SYSTEM_HEAP_REPORTER 1 - static MOZ_MUST_USE nsresult SystemHeapSize(int64_t* aSizeOut) { -@@ -142,6 +143,7 @@ + [[nodiscard]] static nsresult SystemHeapSize(int64_t* aSizeOut) { +@@ -146,6 +147,7 @@ using namespace dom; return NS_OK; } # endif @@ -16,16 +18,16 @@ #elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || \ defined(__OpenBSD__) || defined(__FreeBSD_kernel__) -@@ -642,6 +644,7 @@ +@@ -653,6 +655,7 @@ static bool InSharedRegion(mach_vm_address_t aAddr, cpu_type_t aType) { return NS_OK; } +#ifdef __GLIBC__ # define HAVE_SYSTEM_HEAP_REPORTER 1 - // Windows can have multiple separate heaps. During testing there were multiple - // heaps present but the non-default ones had sizes no more than a few 10s of -@@ -698,6 +701,7 @@ - *aSizeOut = heapsSize; + // Windows can have multiple separate heaps, but we should not touch non-default + // heaps because they may be destroyed at anytime while we hold a handle. So we +@@ -685,6 +688,7 @@ static bool InSharedRegion(mach_vm_address_t aAddr, cpu_type_t aType) { + *aSizeOut = heapSize; return NS_OK; } +#endif // __GLIBC__ diff --git a/srcpkgs/thunderbird/patches/python3.11.patch b/srcpkgs/thunderbird/patches/python3.11.patch deleted file mode 100644 index 2facee5ebb2b..000000000000 --- a/srcpkgs/thunderbird/patches/python3.11.patch +++ /dev/null @@ -1,238 +0,0 @@ -Patch-Source: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=267709 -Patch-Source: https://hg.mozilla.org/mozilla-central/rev/f54162b2c1f2fe52c6137ab2c3469a1944f58b27 ---- a/xpcom/idl-parser/xpidl/xpidl.py -+++ b/xpcom/idl-parser/xpidl/xpidl.py -@@ -1633,13 +1633,13 @@ class IDLParser(object): - t_ignore = " \t" - - def t_multilinecomment(self, t): -- r"/\*(?s).*?\*/" -+ r"/\*(\n|.)*?\*/" - t.lexer.lineno += t.value.count("\n") - if t.value.startswith("/**"): - self._doccomments.append(t.value) - - def t_singlelinecomment(self, t): -- r"(?m)//.*?$" -+ r"//[^\n]*" - - def t_IID(self, t): - return t -@@ -1652,7 +1652,7 @@ class IDLParser(object): - return t - - def t_LCDATA(self, t): -- r"(?s)%\{[ ]*C\+\+[ ]*\n(?P.*?\n?)%\}[ ]*(C\+\+)?" -+ r"%\{[ ]*C\+\+[ ]*\n(?P(\n|.)*?\n?)%\}[ ]*(C\+\+)?" - t.type = "CDATA" - t.value = t.lexer.lexmatch.group("cdata") - t.lexer.lineno += t.value.count("\n") - - -# HG changeset patch -# User ahochheiden -# Date 1654151264 0 -# Node ID f54162b2c1f2fe52c6137ab2c3469a1944f58b27 -# Parent 6e7776492240c27732840d65a33dcc440fa1aba0 -Bug 1769631 - Remove 'U' from 'mode' parameters for various 'open' calls to ensure Python3.11 compatibility r=firefox-build-system-reviewers,glandium - -The 'U' flag represents "universal newline". It has been deprecated -since Python3.3. Since then "universal newline" is the default when a -file is opened in text mode (not bytes). In Python3.11 using the 'U' -flag throws errors. There should be no harm in removing 'U' from 'open' -everywhere it is used, and doing allows the use of Python3.11. - -For more reading see: https://docs.python.org/3.11/whatsnew/3.11.html#changes-in-the-python-api - -Differential Revision: https://phabricator.services.mozilla.com/D147721 - -diff --git a/dom/base/usecounters.py b/dom/base/usecounters.py ---- a/dom/base/usecounters.py -+++ b/dom/base/usecounters.py -@@ -3,17 +3,17 @@ - # file, You can obtain one at http://mozilla.org/MPL/2.0/. - - import collections - import re - - - def read_conf(conf_filename): - # Can't read/write from a single StringIO, so make a new one for reading. -- stream = open(conf_filename, "rU") -+ stream = open(conf_filename, "r") - - def parse_counters(stream): - for line_num, line in enumerate(stream): - line = line.rstrip("\n") - if not line or line.startswith("//"): - # empty line or comment - continue - m = re.match(r"method ([A-Za-z0-9]+)\.([A-Za-z0-9]+)$", line) -diff --git a/python/mozbuild/mozbuild/action/process_define_files.py b/python/mozbuild/mozbuild/action/process_define_files.py ---- a/python/mozbuild/mozbuild/action/process_define_files.py -+++ b/python/mozbuild/mozbuild/action/process_define_files.py -@@ -31,17 +31,17 @@ def process_define_file(output, input): - - config = PartialConfigEnvironment(topobjdir) - - if mozpath.basedir( - path, [mozpath.join(topsrcdir, "js/src")] - ) and not config.substs.get("JS_STANDALONE"): - config = PartialConfigEnvironment(mozpath.join(topobjdir, "js", "src")) - -- with open(path, "rU") as input: -+ with open(path, "r") as input: - r = re.compile( - "^\s*#\s*(?P[a-z]+)(?:\s+(?P\S+)(?:\s+(?P\S+))?)?", re.U - ) - for l in input: - m = r.match(l) - if m: - cmd = m.group("cmd") - name = m.group("name") -diff --git a/python/mozbuild/mozbuild/backend/base.py b/python/mozbuild/mozbuild/backend/base.py ---- a/python/mozbuild/mozbuild/backend/base.py -+++ b/python/mozbuild/mozbuild/backend/base.py -@@ -267,17 +267,17 @@ class BuildBackend(LoggingMixin): - If an exception is raised, |mach build| will fail with a - non-zero exit code. - """ - self._write_purgecaches(config) - - return status - - @contextmanager -- def _write_file(self, path=None, fh=None, readmode="rU"): -+ def _write_file(self, path=None, fh=None, readmode="r"): - """Context manager to write a file. - - This is a glorified wrapper around FileAvoidWrite with integration to - update the summary data on this instance. - - Example usage: - - with self._write_file('foo.txt') as fh: -diff --git a/python/mozbuild/mozbuild/preprocessor.py b/python/mozbuild/mozbuild/preprocessor.py ---- a/python/mozbuild/mozbuild/preprocessor.py -+++ b/python/mozbuild/mozbuild/preprocessor.py -@@ -526,17 +526,17 @@ class Preprocessor: - if not options.output: - raise Preprocessor.Error( - self, "--depend doesn't work with stdout", None - ) - depfile = get_output_file(options.depend) - - if args: - for f in args: -- with io.open(f, "rU", encoding="utf-8") as input: -+ with io.open(f, "r", encoding="utf-8") as input: - self.processFile(input=input, output=out) - if depfile: - mk = Makefile() - mk.create_rule([six.ensure_text(options.output)]).add_dependencies( - self.includes - ) - mk.dump(depfile) - depfile.close() -@@ -855,17 +855,17 @@ class Preprocessor: - self.checkLineNumbers = False - if isName: - try: - args = _to_text(args) - if filters: - args = self.applyFilters(args) - if not os.path.isabs(args): - args = os.path.join(self.curdir, args) -- args = io.open(args, "rU", encoding="utf-8") -+ args = io.open(args, "r", encoding="utf-8") - except Preprocessor.Error: - raise - except Exception: - raise Preprocessor.Error(self, "FILE_NOT_FOUND", _to_text(args)) - self.checkLineNumbers = bool( - re.search("\.(js|jsm|java|webidl)(?:\.in)?$", args.name) - ) - oldFile = self.context["FILE"] -@@ -909,17 +909,17 @@ class Preprocessor: - - def do_error(self, args): - raise Preprocessor.Error(self, "Error: ", _to_text(args)) - - - def preprocess(includes=[sys.stdin], defines={}, output=sys.stdout, marker="#"): - pp = Preprocessor(defines=defines, marker=marker) - for f in includes: -- with io.open(f, "rU", encoding="utf-8") as input: -+ with io.open(f, "r", encoding="utf-8") as input: - pp.processFile(input=input, output=output) - return pp.includes - - - # Keep this module independently executable. - if __name__ == "__main__": - pp = Preprocessor() - pp.handleCommandLine(None, True) -diff --git a/python/mozbuild/mozbuild/util.py b/python/mozbuild/mozbuild/util.py ---- a/python/mozbuild/mozbuild/util.py -+++ b/python/mozbuild/mozbuild/util.py -@@ -231,17 +231,17 @@ class FileAvoidWrite(BytesIO): - enabled by default because it a) doesn't make sense for binary files b) - could add unwanted overhead to calls. - - Additionally, there is dry run mode where the file is not actually written - out, but reports whether the file was existing and would have been updated - still occur, as well as diff capture if requested. - """ - -- def __init__(self, filename, capture_diff=False, dry_run=False, readmode="rU"): -+ def __init__(self, filename, capture_diff=False, dry_run=False, readmode="r"): - BytesIO.__init__(self) - self.name = filename - assert type(capture_diff) == bool - assert type(dry_run) == bool - assert "r" in readmode - self._capture_diff = capture_diff - self._write_to_file = not dry_run - self.diff = None -diff --git a/python/mozbuild/mozpack/files.py b/python/mozbuild/mozpack/files.py ---- a/python/mozbuild/mozpack/files.py -+++ b/python/mozbuild/mozpack/files.py -@@ -549,17 +549,17 @@ class PreprocessedFile(BaseFile): - self.defines = defines - self.extra_depends = list(extra_depends or []) - self.silence_missing_directive_warnings = silence_missing_directive_warnings - - def inputs(self): - pp = Preprocessor(defines=self.defines, marker=self.marker) - pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) - -- with _open(self.path, "rU") as input: -+ with _open(self.path, "r") as input: - with _open(os.devnull, "w") as output: - pp.processFile(input=input, output=output) - - # This always yields at least self.path. - return pp.includes - - def copy(self, dest, skip_if_older=True): - """ -@@ -606,17 +606,17 @@ class PreprocessedFile(BaseFile): - return False - - deps_out = None - if self.depfile: - deps_out = FileAvoidWrite(self.depfile) - pp = Preprocessor(defines=self.defines, marker=self.marker) - pp.setSilenceDirectiveWarnings(self.silence_missing_directive_warnings) - -- with _open(self.path, "rU") as input: -+ with _open(self.path, "r") as input: - pp.processFile(input=input, output=dest, depfile=deps_out) - - dest.close() - if self.depfile: - deps_out.close() - - return True - - diff --git a/srcpkgs/thunderbird/patches/rust-configure.patch b/srcpkgs/thunderbird/patches/rust-configure.patch index 61fb2ba891d9..b5ff2987008c 100644 --- a/srcpkgs/thunderbird/patches/rust-configure.patch +++ b/srcpkgs/thunderbird/patches/rust-configure.patch @@ -6,9 +6,11 @@ instead use what is set in RUST_TARGET Skip extra checks on cross builds (broken for arm*) ---- a/build/moz.configure/rust.configure 2020-12-12 01:35:33.000000000 +0100 -+++ b/build/moz.configure/rust.configure 2020-12-15 19:45:16.467750787 +0100 -@@ -91,9 +91,6 @@ +diff --git a/build/moz.configure/rust.configure b/build/moz.configure/rust.configure +index e64dc5d5ec..c4778f8cc8 100644 +--- a/build/moz.configure/rust.configure ++++ b/build/moz.configure/rust.configure +@@ -91,9 +91,6 @@ def unwrap_rustup(prog, name): return unwrap @@ -18,7 +20,7 @@ Skip extra checks on cross builds (broken for arm*) set_config("CARGO", cargo) set_config("RUSTC", rustc) -@@ -260,7 +257,9 @@ +@@ -274,7 +271,9 @@ def rust_supported_targets(rustc): data.setdefault(key, []).append(namespace(rust_target=t, target=info)) return data @@ -29,24 +31,26 @@ Skip extra checks on cross builds (broken for arm*) def detect_rustc_target( host_or_target, compiler_info, arm_target, rust_supported_targets ): -@@ -382,12 +381,12 @@ +@@ -396,12 +395,14 @@ def detect_rustc_target( return None - rustc_target = find_candidate(candidates) + rustc_target = os.environ['RUST_TARGET'] ++ if rustc_target is None: die("Don't know how to translate {} for rustc".format(host_or_target.alias)) - return rustc_target + return ensure_unicode(rustc_target, system_encoding) ++ @imports("os") -@@ -410,35 +409,6 @@ +@@ -423,35 +424,6 @@ def assert_rust_compile(host_or_target, rustc_target, rustc): - os.write(in_fd, ensure_binary(source)) + os.write(in_fd, source) os.close(in_fd) - - cmd = [ @@ -80,7 +84,7 @@ Skip extra checks on cross builds (broken for arm*) finally: os.remove(in_path) os.remove(out_path) -@@ -462,28 +432,7 @@ +@@ -475,28 +447,7 @@ def rust_host_triple( host, compiler_info, arm_target, rust_supported_targets ) if rustc_target != rustc_host: diff --git a/srcpkgs/thunderbird/patches/sandbox-fork.patch b/srcpkgs/thunderbird/patches/sandbox-fork.patch index d4584e74b91c..a8cb89394f87 100644 --- a/srcpkgs/thunderbird/patches/sandbox-fork.patch +++ b/srcpkgs/thunderbird/patches/sandbox-fork.patch @@ -1,8 +1,8 @@ -make SYS_fork non-fatal, musl uses it for fork(2) - +diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp +index 20e9b59685..e053580992 100644 --- a/security/sandbox/linux/SandboxFilter.cpp +++ b/security/sandbox/linux/SandboxFilter.cpp -@@ -1420,6 +1420,10 @@ +@@ -1598,6 +1598,11 @@ class ContentSandboxPolicy : public SandboxPolicyCommon { // usually do something reasonable on error. case __NR_clone: return ClonePolicy(Error(EPERM)); @@ -10,6 +10,7 @@ make SYS_fork non-fatal, musl uses it for fork(2) + case __NR_fork: + return Error(ENOSYS); +# endif ++ - # ifdef __NR_fadvise64 - case __NR_fadvise64: + case __NR_clone3: + return Error(ENOSYS); diff --git a/srcpkgs/thunderbird/template b/srcpkgs/thunderbird/template index ec3fa3d4c35f..c8e870223479 100644 --- a/srcpkgs/thunderbird/template +++ b/srcpkgs/thunderbird/template @@ -3,15 +3,15 @@ # THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/thunderbird-i18n". # pkgname=thunderbird -version=102.6.1 -revision=3 +version=102.11.0 +revision=1 build_helper="rust" short_desc="Standalone Mail/News reader" maintainer="Érico Nogueira " license="MPL-2.0, GPL-2.0-or-later, LGPL-2.1-or-later" homepage="https://www.thunderbird.net/" distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.xz" -checksum=8b8cb5d7532ad8ee65061d2f284ae9f0470e7614dfcfc3c37ca945bcb96d1183 +checksum=de73803f8a0bb4037da0a50748de41761939cab9cc924d93bd08e142610a64fa lib32disabled=yes From 2d81bde61f8e4d7d5daa0c87499cb5bb0652204e Mon Sep 17 00:00:00 2001 From: Pascal Huber Date: Wed, 26 Apr 2023 12:09:25 +0200 Subject: [PATCH 2/2] thunderbird-i18n: udpate to 102.10.1 --- srcpkgs/thunderbird-i18n/template | 135 +++++++++++++++--------------- 1 file changed, 67 insertions(+), 68 deletions(-) diff --git a/srcpkgs/thunderbird-i18n/template b/srcpkgs/thunderbird-i18n/template index 17830bddd777..35f08a439100 100644 --- a/srcpkgs/thunderbird-i18n/template +++ b/srcpkgs/thunderbird-i18n/template @@ -1,6 +1,6 @@ # Template file for 'thunderbird-i18n' pkgname=thunderbird-i18n -version=102.6.1 +version=102.11.0 revision=1 build_style=meta short_desc="Thunderbird language packs" @@ -106,70 +106,69 @@ _pkgtmpl() { usr/lib/thunderbird/extensions langpack-${_lang}@thunderbird.mozilla.org.xpi } } - -checksum="5935be82bcbd313b58520d95b04dc32c462e47df88f9724bb31b21686f8b4b77 - 142c0bd4d67b03320db94ae8002c8d67d9bc481a7ad728efa17ba7ae09e9a971 - 5547af80c73146c9892ad2dcd7fb5c6616c9a3a5b49868a23f03914ae2da1537 - e6f34bb2a5412ef9127aacd87823c84ca2881d47b15a45a96751a7557d1e0398 - cb35b936f2db79a897e1372ea34a1fb8237885030446f29269b940c0f221d733 - ada9c925979d25cb0e1549d20466b7e22653931715dd1a7fe85ca835caddf7f7 - 9b92561b20face8de88a77a579afa6d1404f55c69340993508fcc3153e1bd70b - 64db6133cc87197cb793e0e33b72345bc30dabf862a06f7574321ea783c54645 - db622d082616525302f8d32b9f41793804d51495d1a7b1f62125ed9daedd3fb2 - 919ccec7292a6cf9ccce66fc7a91bbae2a3f93d965ecb4237380256cc8c344dd - f160cb1db40b31815096c0c58f9aa75213e294600c12fef2d2deb741e24e22dd - ce4e51c46cb0860c2671606ef94bff741b2e3d5e70e485b9c5c90d0e481cc5b2 - 05a552baec6b12b7e3f9270a628ff6a3fe62ec17c232f905465317e85e40e731 - 6bc18f1db7d0233c9d3bc0cf277234322845d309918681636c30a2c131bd90e9 - a7cc9b51e57b4de49f958cf1ea47d526e6873318fba96b52ee42d541a2e35902 - bf1fac8be9eca95bdbc9f8542445301e146148afe69b40a4ea41bfdf64ab1034 - 85e3c40c5ef6bd2fdbf9951304bec1f17e2f7a212abdf20cf103a5e7b73f2be9 - 6489211d465c053182484faae07c708e076b82a88d0ebecfda071f4bb41b5677 - f0d0d4a58d6bac842c28bee253e6d5906e582b359173fdeedb6d4c40f0b9a4c8 - 4e3da06699c1cc87b735ef9d181f8cc33c989f44840d02c9b9e5dfd893a8c05e - 0dcabb9158d29001082801b1703946b1df9e22653fc7c66c9a725f102f2ada00 - 1e3ee2f9d0291ec2aa0a2d5939ca3074d6b6a7da533186e227da1d3cc2cc7974 - ab7931be527b56dea1939b048030647e4311b0c0eaa23b7843f3baab180801ba - a592cfeb20a346ad8b24facca3f0da2c5fdd65156aafea67b0c3793bb99ab0a1 - 32740a1261d43b6bec2b99e2da64bdf201c60b1d0651a5a5db548e1180cf5fb1 - e9e669a9917eab86af336c1d149910cb8606e21708c2b5707d87452c455905b0 - 777d625c67cbe9e710ac7fffda880e0a1fb523f8cafc6ac2c3b227b2d5de38f5 - 63728cede6b88d8352b9398c675c4537527de00ee8a0e120bcc905be9f47ae89 - 97f387a2b47303ca475eeab466a0d9f4bc64554b82c55a00f2da4cea431aaa03 - c875c6a19505c6a04cbeba85baad5d9432efd930d920eebb72413d6642a33d3f - 4ebd23d9533cf2c5b63ec4dc6b6f83df742c473d7d108dd70b9947d014a4ec45 - de78a9bdb410bd9850b4d1197442e263cfb7f3a112917aa40f76a5c50f5ae64c - b23fb2ac9a531848ef30e960fdd3174ae970f84b42a2adec1bb34329879acd96 - b7024f86fac5844692b7e5c859e91c721a8279ee60880cafe9479476559bd9fa - 7107ffa0816d059147381b63ee31d66b4ad9b6af77ed409c05994fc2eb5c597d - 1e1144a17959632ccce43025f4addc4adea7c0c225bac529f99b501604b96b53 - 3697fe13197519a9838584a17ed612ae08d9c603d56340df13c42fb971ddbca4 - d357fa261223596406a931867f84f1aefaa4ff8556257a005e0d5061c6b5e8cf - a85066ac413255ea51260e8c690b7a4fe8602ceb628e7d2fa6803ccafa02c9c8 - a9850ec702c480ab9ed2bbee16f8ffea2fa1e60da5f68f0f51b051699a3551de - cd784b2b6317748241bc8f5192d5d3e734cc8747b61955485a859faad4be151b - f67ba1abdbf107f5f18db505ea5c5b588bd4fbdd9c589991a643db0da1204f4b - 8de924873919f06468f58d8a1dae8e9d2886d3705aa59b2dc7d30b9659a5327a - 8b2b9ec349e0e562b7e681f8b9c910256c46953c1cd12f131d7e6f04469954f6 - 5ddd93aff16c17626a170fd0a5c95a72e9ab7bcaeaff67f36445ddd21100f42d - 7bbeb6237a36f375cf78820e59dc61e619854bcf031852a5e8201b783176deac - f77a1a325100e9f4bd84eeba002b35b63bad535b723ce854b0ce85e63776de38 - bf1573cca7b0892ca234a5bb2e44646ba997c0be8051017f35ae217aa7f60bdb - 671bb222053b1fa8bb609095e518392dd3cb1ce2dde780ed34441118324cb551 - 6c4c7032d76b31bb76abfae5c5e288bd0a82bbcf7d9bf8aa9197bea687c86a46 - 4195b95b23a643925488e969accb294d1c056247ccfec745748d6ee0b0c94851 - ebaa54f3a992514bbf54bce4ab82743390c715a81343739948efd0ac3ca33599 - 868b30b8b311aed6c74b8d5fc05b7c4a0f32f56602b594229ddcadff2733a1f3 - 75f7542f8d3d49cf4e16023fae32a329fa8e804c90bae236a6415a4a045f6ce0 - ea857d827ee2cc580fae43772648cc410c1bcd4c8612cff9a3a7d11b04e54725 - 25716f39d2d7d25f448dc9a68270f51124f1d234f0b9482743dcc0c1a00fa8b1 - 42d52c4ce57e8cae43667faf7600e98d085b0ab713e7607bc1dae1f34932be67 - 5319b79f719dd27e45ecca54d29482d6558f41947db5c4ec4b70c3e25bb8f55a - 88bcbfa7a2b006b93fd715810661b464e7b150006f046a94e6c03d2e067ae7e3 - 838d84317a7c51c13329c919d4479396b30233136b70fe025faf968b916ba1c1 - 5f686f697c1093c45ef882c3feb1def6064f458d5ae75a74962375b91c6027d5 - 9f9a7a4e6d73698fdc623384a666e677ce2d32990bc69e16aa631a34371cdf78 - 0ba4499c5805a83172e5dcbdc8fd8e464824827f94ed1849d9a1797a9b386e00 - 41f65c5307ec97310b33ace466439e4abf008d461be3835f545e4194e6c54940 - edd966278b660bb280e8e319300e18652ce2ef0fca5baeeb72696b5fd2a03d69 - 13d667aaf3338da21355c042b3a07567553ee48bf0dc071f9a55ef49451de21c" +checksum="763ecf76a44d2b3a54d5322e8b8e9bb114e614994c86890cd90161677d120c8f + 90c7fe80a2339167fc69786734b967aece2a421621d36e752e54b2f147ff5ac6 + c24e9594c7986403eb27dbce84bdc010a65eabbd13f793b84c2dd0d5a791a045 + 76ab351b7df17be4f76908cd02577827e7cc06aaaaad99972f3d1b906ad7bdc6 + 6f1d4d0f84a59c0aae37540f4225a3d14707d19dd95059559984055f521d1d92 + cbe526d246f970cb26fc172fc104944c6749af5cf92925fc1383e363e89818cb + 2280827dd24eac6ef5b6b3d26cc82c74df5e346db22130c4e15869020cac1cbd + 117265f83d6d2abee57d67d4366c5fbcf237b88475014ab1d6800ce9029636b8 + 14c370c300bdcda24f949c14853ea05b53e2413c62cece006bb91002494b38a6 + c75f11e26056438f605eecab7a95acba3101b47b5cba32e177a6173a354b5a14 + 3c395f4c1cf283f5950311c7182af4ecb1d5b668418cbfac90de3f015b6b223d + b8a5afb77f711d847c017af81fecad2c102db8d4dc0d223c6c5119687079c565 + cdac954f7cb0736a3c701ba0a6e49ed3522f682c107a7d24c1f859af96dce4e7 + 7508672b2bc98aedd26aa9c49eb2be7df6552a086ca5702b2af874f3555374ef + 047748a9a21d0c21f5fe360adeb9299a6b874270c7f2df42127569d741c02faf + 5c65be46b938078e5af84d77c13e82da223583cb6c7f0679a73246907703780a + 84d6022cad46dadeeb61bddf5714109d97f4be2d224e611d9afb5cf0d728e19a + 89970c0013af482caa047a5aabb7e39b9b74823fd709fd1baf09fdaa4520319d + c24be69ddc835f8ad3377f0bb5604e3c46e20c7e79b6ff79e10e2435ae436cf7 + 80ccf123395143ad02142b6ed57b7d0def4be401295f14b0c0a5e43880188069 + 70a52a4d76027b5c64c8f001d1aa72bb941efeba506df1c59227e914358439fe + ec3ee11773bd113db7fb0b885d159b2ed07fe18aacde20bd34f89b357af8df21 + 7b03988df8873d38150fbbe9d942d34f81fa5c9363bd2216eeae2063b8a21db1 + becb5b92c7e13eea5df575eb302e61adff21031b1be78250749a68ab63b15091 + a246120edab5f932b8b9e9713271f42405d98ed6accb51ec649deab60f282f46 + fbe2053c5ed5e59b0060f54b57701ae52562c8d7317a4ee08ea594df9c17dfa7 + f18cb6d815e71227f04f970b701938314c95986c77f851ab84c78d4271cca49f + 7d18915e61eebe1d40565894df123a052fa6fbc50b3b2aa164c8396d38900ed1 + 58fd300c3311ad8561b3ace4e1c74f96a1c555e57309f93410352c3a00df7995 + b2fc772da6797da6eeed3b59ce71de88d8d2ee8ad1eab04bfc4ba0e309a97585 + 8f3abdef87aceca654d854bc6e44d58529e87a0a28143666632b1ba42d44beba + adc08563d795237dfdbb90403437a3bb4364a69c1d0dd26b51d9832f92b495f6 + f6a36d9a6abb4ef0b882de8e21bd38ca97126e15878bec3bee71b4270e175ce2 + 0bd16c6b6daeffdef453e707d964552d2d4231473899b1da663f4b0239da4656 + 3092e0702fa73a88fdec62e940a0acbb10389492567284bbec61dbaac7b582a8 + 1a9c60f416e199cb083ee17b2e2a9111c9805bcf02011238bec4358a9c89e5e2 + 858ec83056086d82da01047afaf27b814f4a9e30a16e98d2e2169183456b9918 + bcea6f19e2ed267cbbcb2af58c712c1f61c80cfd71648b3b429bc5fe90df782f + 3cfe8d3ede3a4152066ec6260c917523fb4204eb5fdaf1e39a852a7b472fa827 + a0ca5462f423174c253203031c7bdb706d02218aa95a0e71ba0eb3f25fc04623 + a403c787aacf92cd9c0b91da7fb1e8b5139044cfb38b2a78389105063a309b67 + 71e39bee0aaad11dcbd8191fab6db5749c3527ab3c229209edb70cde77e1dace + e682542a6ac38290cab79f965362ba879883eb0d220c2f1c80f0be649d39ced5 + 4279d5107fe04bf2edaeb9df5ec0d512c1e9e3f42fa372f5513d7cf44dedad0e + c7fcdccb3150b1aaf53bf7396a5f03a47b894887a641872a2965aab8bd9c4f14 + d6a93e2a5e79abf53b20b15b98187107c844ce27b66aeeb9b5da73a50a32d0a3 + 2bfded1726ec739b87c2602848d1ea7a0a54937d15fa95b14d02ab77d3902563 + d149ffb9f2bfab4d737774bedfea7e84961c5ba5aeab014d7f5bc4c3aeed873e + f323512055f2303ae6551970bcf8e2e50ec4bc2f2784b43425b2b125f75a2c49 + 985dc31719df761f6f54cd9a55cb93e9b9ad66ecf948bad50cdaae3e56da3a2a + 5d9e6b1e67271ddf0c450f50e779b300dc0d4d7c87a4ae023c06fdbf9c2a5ec8 + 3a23464ec71cff192e28221d0479e544442b1a3319506b0300fc833496cdfda9 + b8f9ef8d7b7d975938753b496f055432278809373bae5986d3fb91c77731faff + c747bce8fa7d7716b85b93d4298eae070fe01f7fb44315971f36e4c46d4f011d + 20ceeeb13e2314557c83cde1c51ecf05c97dc0c41e4259bc05dc7ce29a6e6405 + a7aa285bf26386a9014b5ac0219bb607310bae9def2d25ecc045a2b5ea982f7b + 941c35311029cc3b305e87faad98d70c67255fad57b619e0c3f9523cf8b9a532 + cf9ce609fb63ba746a4d849d8d6172ed3eb7f7b4fd7248c57347eb3aad0e32bc + 501cc2da15fad009958bc2275165cbcaacf1eaf5b9a9454b3e7d1190c193e451 + bf0add852e330033d01d5dbce3b9f6ffd5f04565f5c03b15e841100c5c7ada8d + 33862d7c35638859d8a83e0b3fc259caa1ff82d60983de88c6457d7eca5b3617 + b9e2b4c117f2038672ae03a3433332bead5efa8a6a662ac7856c253c1206106b + 09e0fab3f0c40776ee6a60c6c6abce7d6b7511427e7cf24d947ae0a4d48d8c5d + 50b3981dea4da521000e19e99a1ebb24484b49656a5b5748cd24aa1114861076 + 5bf6e2b8c821d20c561359b1645991a2a7820c583f44a3d8205ee077fb012b4d + 83f4e62f15da5f6fc88873304fd918fec18072982e599c071d1417fa8a5f94f1"